diff --git a/flake.nix b/flake.nix index a104f35..d29a4fa 100644 --- a/flake.nix +++ b/flake.nix @@ -88,6 +88,7 @@ ./nixos/nvim ./nixos/ollama.nix ./nixos/pkg.nix + ./nixos/printing.nix ./nixos/shell.nix ./nixos/sops.nix ./nixos/sudo.nix diff --git a/nixos/printing.nix b/nixos/printing.nix new file mode 100644 index 0000000..7c46ea5 --- /dev/null +++ b/nixos/printing.nix @@ -0,0 +1,8 @@ +{ + # IPP Autodiscovery + services.avahi = { + enable = true; + nssmdns4 = true; + openFirewall = true; + }; +}