begin (possible) module rewrite

This commit is contained in:
xunuwu 2024-08-27 00:23:34 +02:00
parent 675d0453ad
commit 7cdfb454eb
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
6 changed files with 68 additions and 3 deletions

View file

@ -74,9 +74,9 @@ in {
#"services/ollama.nix"
"desktop/x11/nosleep.nix"
"programs/gamemode.nix"
"programs/gamescope.nix"
"programs/steam.nix"
# "programs/gamemode.nix" # TEMP: TODO
# "programs/gamescope.nix" # TEMP: TODO
# "programs/steam.nix" # TEMP: TODO
"programs/RE"
])

View file

@ -2,6 +2,7 @@
imports = [
./hardware.nix
./hibernate-boot.nix
./testing.nix
];
networking.hostName = "nixdesk";

11
hosts/nixdesk/testing.nix Normal file
View file

@ -0,0 +1,11 @@
{self, ...}: {
imports = [
self.nixosModules.xun
];
xun.gaming = {
enable = true;
steam.enable = true;
gamescope.enable = true;
gamemode.enable = true;
};
}