summary refs log tree commit diff stats
path: root/modules/zeroconf.nix
diff options
context:
space:
mode:
authorAlan Pearce2017-09-13 09:45:53 +0200
committerAlan Pearce2017-09-13 09:45:53 +0200
commit0fa96641a6ad7e37cc8013b73348392b3465f1a9 (patch)
treeb246f65f9d1ecf03c525e3d409db3aa56b62da3c /modules/zeroconf.nix
parent4d814ea9e74052f851a498fc6ee95e850a374636 (diff)
downloadnixos-configuration-0fa96641a6ad7e37cc8013b73348392b3465f1a9.tar.lz
nixos-configuration-0fa96641a6ad7e37cc8013b73348392b3465f1a9.tar.zst
nixos-configuration-0fa96641a6ad7e37cc8013b73348392b3465f1a9.zip
Add services for printing via network
Diffstat (limited to 'modules/zeroconf.nix')
-rw-r--r--modules/zeroconf.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/zeroconf.nix b/modules/zeroconf.nix
new file mode 100644
index 0000000..aa4b47e
--- /dev/null
+++ b/modules/zeroconf.nix
@@ -0,0 +1,7 @@
+{ config, pkgs, ... }:
+
+{ services.avahi = {
+    enable = true;
+    nssmdns = true;
+  };
+}