From 665567692855fdd93a3c4c9d8df5742c074d1105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20K=C3=A4nner?= Date: Mon, 29 Apr 2024 13:28:37 +0200 Subject: [PATCH] 296 current 1970-01-01 01:00:00 23.11.20240428.12430e4 6.1.87 * --- hosts/MaxNixosLaptop/configuration.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hosts/MaxNixosLaptop/configuration.nix b/hosts/MaxNixosLaptop/configuration.nix index 90779ab..b2a3e79 100644 --- a/hosts/MaxNixosLaptop/configuration.nix +++ b/hosts/MaxNixosLaptop/configuration.nix @@ -74,7 +74,10 @@ console.keyMap = "de"; # Enable CUPS to print documents. - services.printing.enable = true; + services.printing = { + enable = true; + drivers = [pkgs.samsung-unified-linux-driver]; + }; services.avahi = { enable = true; nssmdns = true; @@ -88,7 +91,7 @@ users.users.max = { isNormalUser = true; description = "Max Känner"; - extraGroups = ["networkmanager" "wheel" "libvirtd"]; + extraGroups = ["networkmanager" "wheel" "libvirtd" "lpadmin"]; shell = pkgs.zsh; };