2: Added printer support and added osu and mangohud
This commit is contained in:
parent
0cb64fc7cc
commit
460f385613
@ -19,5 +19,7 @@
|
||||
./nixos-cli.nix
|
||||
./vmware.nix
|
||||
./lanzaboote.nix
|
||||
./gaming.nix
|
||||
./printing.nix
|
||||
];
|
||||
}
|
||||
|
||||
11
system/modules/gaming.nix
Normal file
11
system/modules/gaming.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{pkgs, ... }: {
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
heroic
|
||||
mangohud
|
||||
osu-lazer
|
||||
];
|
||||
}
|
||||
12
system/modules/printing.nix
Normal file
12
system/modules/printing.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{pkgs, ... }: {
|
||||
services.printing = {
|
||||
enable = true;
|
||||
drivers = [pkgs.hplip pkgs.hplipWithPlugin];
|
||||
};
|
||||
|
||||
services.avahi = {
|
||||
enable = true;
|
||||
nssmdns4 = true;
|
||||
openFirewall = true;
|
||||
};
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user