fixed gaming

This commit is contained in:
kenji
2025-06-30 13:43:35 -05:00
parent 30a55ac796
commit 6cdfd4c169
3 changed files with 4 additions and 3 deletions
+1
View File
@@ -14,6 +14,7 @@
../../modules/de.nix ../../modules/de.nix
] ]
++ lib.optionals (myConfig.linux.apps.gaming == true) [ ++ lib.optionals (myConfig.linux.apps.gaming == true) [
../../system/gaming.nix
]; ];
environment.systemPackages = []; environment.systemPackages = [];
+1 -1
View File
@@ -7,7 +7,7 @@
Value = false; Value = false;
Status = "locked"; Status = "locked";
}; };
lock-true = :q lock-true = {
Value = true; Value = true;
Status = "locked"; Status = "locked";
}; };
+2 -2
View File
@@ -4,9 +4,9 @@
... ...
}: { }: {
environment.systemPackages = [ environment.systemPackages = [
inputs.nix-gaming.packages.${pkgs.system}.wine # inputs.nix-gaming.packages.${pkgs.system}.default
pkgs.steam pkgs.steam
pkgs.protonup-qt pkgs.protonup-qt
]; ];
programs.steam.platformOptimizations.enable = true; # programs.steam.platformOptimizations.enable = true;
} }