diff options
author | Silas Schöffel <sils@sils.li> | 2024-12-29 23:17:43 +0100 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-12-29 23:17:43 +0100 |
commit | 9940561ffb754b24c41d3e8d51346166ad970feb (patch) | |
tree | e27a218bc43a93f3574bff9a2fbda6f0fbd8d727 /sys | |
parent | printing: add hplip driver (diff) | |
download | nix-config-9940561ffb754b24c41d3e8d51346166ad970feb.zip |
modules/printing: init
Diffstat (limited to 'sys')
-rw-r--r-- | sys/services/default.nix | 1 | ||||
-rw-r--r-- | sys/services/printing/default.nix | 12 |
2 files changed, 0 insertions, 13 deletions
diff --git a/sys/services/default.nix b/sys/services/default.nix index 0b0ba3b..7546fcc 100644 --- a/sys/services/default.nix +++ b/sys/services/default.nix @@ -4,7 +4,6 @@ ./greetd ./logind ./openssh - ./printing ./restic ./tlp ./udev diff --git a/sys/services/printing/default.nix b/sys/services/printing/default.nix deleted file mode 100644 index c2a391d..0000000 --- a/sys/services/printing/default.nix +++ /dev/null @@ -1,12 +0,0 @@ -{pkgs, ...}: { - services = { - printing = { - enable = true; - drivers = with pkgs; [epson-escpr hplip]; - }; - avahi = { - enable = true; - openFirewall = true; - }; - }; -} |