diff options
author | sefidel <contact@sefidel.net> | 2024-04-27 14:14:36 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-05-10 22:26:05 +0900 |
commit | 3eeb9591cfe1fb705af5deac45e5a913933fa19c (patch) | |
tree | 8daf840c9092e236d76b23b15a4f445987785d23 /nixos | |
parent | 7c908293f7ecd02a0e4b60f32ed2e2ff41174324 (diff) | |
download | nixrc-3eeb9591cfe1fb705af5deac45e5a913933fa19c.tar.gz nixrc-3eeb9591cfe1fb705af5deac45e5a913933fa19c.zip |
feat(nixos/alpha): add brother printer drivers
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/alpha/configuration.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/alpha/configuration.nix b/nixos/alpha/configuration.nix index bc2aa6e..a60885c 100644 --- a/nixos/alpha/configuration.nix +++ b/nixos/alpha/configuration.nix @@ -201,6 +201,10 @@ ''; services.printing.enable = true; + services.printing.drivers = with pkgs; [ + brgenml1lpr + brgenml1cupswrapper + ]; services.avahi.enable = true; services.avahi.nssmdns4 = true; @@ -338,7 +342,7 @@ remotePlay.openFirewall = true; dedicatedServer.openFirewall = true; }; - nixpkgs.allowedUnfree = [ "steam" "steam-original" "steam-run" ]; + nixpkgs.allowedUnfree = [ "steam" "steam-original" "steam-run" "brgenml1lpr" ]; environment.sessionVariables = { WLR_NO_HARDWARE_CURSORS = "1"; # Prevent cursors disappearing on nouveau |