diff --git a/nixos/modules/bundle.nix b/nixos/modules/bundle.nix index 56d7803..4c042f2 100644 --- a/nixos/modules/bundle.nix +++ b/nixos/modules/bundle.nix @@ -11,5 +11,6 @@ ./trim.nix ./bluetooth.nix ./vpn.nix + ./printing.nix ]; } diff --git a/nixos/modules/printing.nix b/nixos/modules/printing.nix new file mode 100644 index 0000000..98a0314 --- /dev/null +++ b/nixos/modules/printing.nix @@ -0,0 +1,10 @@ +{ + services = { + printing.enable = true; + avahi = { + enable = true; + nssmdns4 = true; + openFirewall = true; + }; + }; +}