From d3df1ec9cb5acf6598c4ee80c2ec80be5da1d6b8 Mon Sep 17 00:00:00 2001 From: Trevor Vallender Date: Fri, 14 Jul 2023 07:54:10 +0100 Subject: [PATCH] Enable printer support --- system/shared/desktop-configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/system/shared/desktop-configuration.nix b/system/shared/desktop-configuration.nix index 7cc1762..06e797f 100644 --- a/system/shared/desktop-configuration.nix +++ b/system/shared/desktop-configuration.nix @@ -14,6 +14,13 @@ # }; # }; + services.printing.enable = true; + services.avahi = { + enable = true; + nssmdns = true; + openFirewall = true; + }; + # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;