blob: f2c289a39cad60aa89a04a8072fbffb51b823266 [file] [log] [blame]
{ pkgs, ... }: {
config = {
environment.systemPackages = [ pkgs.gtklp ];
services = {
printing = {
enable = true;
drivers = with pkgs; [ foomatic-filters hplip cups-filters ];
browsing = true;
browsedConf = ''
BrowseDNSSDSubTypes _cups,_print
BrowseLocalProtocols all
BrowseRemoteProtocols all
CreateIPPPrinterQueues All
BrowseProtocols all
'';
};
};
environment.persistence."/nix/persist".directories = [
"/var/spool/cups"
"/etc/cups"
];
};
}