16 lines
259 B
Nix
16 lines
259 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
local.nix.allowUnfreePackages = [ "cnijfilter2" ];
|
|
|
|
services = {
|
|
avahi = {
|
|
enable = true;
|
|
nssmdns4 = true;
|
|
};
|
|
printing = {
|
|
enable = true;
|
|
drivers = with pkgs; [ gutenprint cnijfilter2 ];
|
|
};
|
|
};
|
|
}
|