summary refs log tree commit diff stats
path: root/sys/services
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2024-12-29 23:17:43 +0100
committerSilas Schöffel <sils@sils.li>2024-12-29 23:17:43 +0100
commit9940561ffb754b24c41d3e8d51346166ad970feb (patch)
treee27a218bc43a93f3574bff9a2fbda6f0fbd8d727 /sys/services
parentprinting: add hplip driver (diff)
downloadnix-config-9940561ffb754b24c41d3e8d51346166ad970feb.zip
modules/printing: init
Diffstat (limited to 'sys/services')
-rw-r--r--sys/services/default.nix1
-rw-r--r--sys/services/printing/default.nix12
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;
-    };
-  };
-}