feat: improve printing config

Should now discover printers via IPP Everywhere automatically.
This commit is contained in:
Felix Schröter 2023-03-06 16:46:25 +01:00
parent 9fe366f34c
commit 01ed691523
Signed by: felschr
GPG key ID: 671E39E6744C807D
3 changed files with 4 additions and 5 deletions

View file

@ -55,8 +55,6 @@
systemd.notify.method = "libnotify";
systemd.notify.libnotify.user = "felschr";
services.printing.drivers = with pkgs; [ epson-escpr ];
# only change this when specified in release notes
system.stateVersion = "22.11";
}

View file

@ -3,6 +3,9 @@
{
imports = [ ./common.nix ./fonts.nix ./sound.nix ./vpn.nix ];
services.printing.enable = true;
services.fwupd.enable = true;
services.printing.enable = true;
services.avahi.enable = true;
services.avahi.nssmdns = true;
}

View file

@ -36,8 +36,6 @@
permitRootLogin = "no";
};
services.printing.drivers = with pkgs; [ epson-escpr ];
# only change this when specified in release notes
system.stateVersion = "22.05";
}