From 7f5ee7a34ad12fba3512afd3b93ff6b04ad8846b Mon Sep 17 00:00:00 2001 From: Tootbrute Date: Tue, 19 Nov 2024 13:41:51 +0800 Subject: [PATCH] Update NixOS config. --- bluenix/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bluenix/configuration.nix b/bluenix/configuration.nix index 96dfd55..fecb8f2 100644 --- a/bluenix/configuration.nix +++ b/bluenix/configuration.nix @@ -12,6 +12,9 @@ ./hardware-configuration.nix ]; + # to make epson work + hardware.sane.enable = true; # enables support for SANE scanners + zramSwap.enable = true; networking.hostName = "bluenix"; # Define your hostname. @@ -26,7 +29,7 @@ users.users.elias = { isNormalUser = true; description = "Elias Gasparis"; - extraGroups = [ "networkmanager" "wheel"]; + extraGroups = [ "networkmanager" "wheel" "scanner"]; packages = with pkgs; [ # thunderbird ];