2: Added printer support and added osu and mangohud

This commit is contained in:
uzy lol 2024-12-17 12:42:20 -08:00
parent 0cb64fc7cc
commit 460f385613
3 changed files with 25 additions and 0 deletions

View File

@ -19,5 +19,7 @@
./nixos-cli.nix ./nixos-cli.nix
./vmware.nix ./vmware.nix
./lanzaboote.nix ./lanzaboote.nix
./gaming.nix
./printing.nix
]; ];
} }

11
system/modules/gaming.nix Normal file
View File

@ -0,0 +1,11 @@
{pkgs, ... }: {
programs.steam = {
enable = true;
};
environment.systemPackages = with pkgs; [
heroic
mangohud
osu-lazer
];
}

View File

@ -0,0 +1,12 @@
{pkgs, ... }: {
services.printing = {
enable = true;
drivers = [pkgs.hplip pkgs.hplipWithPlugin];
};
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
}