diff options
| author | Jon Santmyer <jon@jonsantmyer.com> | 2026-01-31 15:11:10 -0500 |
|---|---|---|
| committer | Jon Santmyer <jon@jonsantmyer.com> | 2026-01-31 15:11:10 -0500 |
| commit | 40c65ac3e6226dcf5c834c0ba2447df1bd0ca37d (patch) | |
| tree | e6778270b06aba249a2a42a8fa7b4af018da6132 /modules/hardware | |
| parent | f061e0b0c7ed745f372a89d5ec5f69dbd818c731 (diff) | |
| parent | a05421b0e4d18c29c9358cd89bea9a61d77d2147 (diff) | |
| download | nix-config-master.tar.gz nix-config-master.tar.bz2 nix-config-master.zip | |
Diffstat (limited to 'modules/hardware')
| -rw-r--r-- | modules/hardware/printer.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/hardware/printer.nix b/modules/hardware/printer.nix new file mode 100644 index 0000000..f4efd99 --- /dev/null +++ b/modules/hardware/printer.nix @@ -0,0 +1,21 @@ +{ + config, + options, + lib, + pkgs, + ... +}: let + device = config.modules.device; +in { + + config = lib.mkIf (device.hasPrinter) (lib.mkMerge [ + { + services.printing.enable = true; + services.avahi = { + enable = true; + nssmdns4 = true; + openFirewall = true; + }; + } + ]); +} |
