summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2017-09-13 09:45:53 +0200
committerAlan Pearce2017-09-13 09:45:53 +0200
commit0fa96641a6ad7e37cc8013b73348392b3465f1a9 (patch)
treeb246f65f9d1ecf03c525e3d409db3aa56b62da3c
parent4d814ea9e74052f851a498fc6ee95e850a374636 (diff)
downloadnixfiles-0fa96641a6ad7e37cc8013b73348392b3465f1a9.tar.lz
nixfiles-0fa96641a6ad7e37cc8013b73348392b3465f1a9.tar.zst
nixfiles-0fa96641a6ad7e37cc8013b73348392b3465f1a9.zip
Add services for printing via network
-rw-r--r--modules/printing.nix8
-rw-r--r--modules/zeroconf.nix7
2 files changed, 15 insertions, 0 deletions
diff --git a/modules/printing.nix b/modules/printing.nix
new file mode 100644
index 00000000..3172f33b
--- /dev/null
+++ b/modules/printing.nix
@@ -0,0 +1,8 @@
+{ config, pkgs, ... }:
+
+{ services.printing.enable = true;
+
+  imports = [
+    ./zeroconf.nix
+  ];
+}
diff --git a/modules/zeroconf.nix b/modules/zeroconf.nix
new file mode 100644
index 00000000..aa4b47e8
--- /dev/null
+++ b/modules/zeroconf.nix
@@ -0,0 +1,7 @@
+{ config, pkgs, ... }:
+
+{ services.avahi = {
+    enable = true;
+    nssmdns = true;
+  };
+}