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