diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-05-26 22:27:25 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-05-26 22:27:25 -0400 |
| commit | 40b05b7eec3c131eee54032ca0587bb824b68c05 (patch) | |
| tree | 3a5dda88117e6e7cb79a6cbc0d4b9ba391682554 /system | |
| parent | more refactoring (diff) | |
| download | dotfiles-nix-40b05b7eec3c131eee54032ca0587bb824b68c05.tar.gz dotfiles-nix-40b05b7eec3c131eee54032ca0587bb824b68c05.tar.bz2 dotfiles-nix-40b05b7eec3c131eee54032ca0587bb824b68c05.zip | |
package and use CachyOS-Settings
Diffstat (limited to 'system')
| -rw-r--r-- | system/gaming/default.nix | 6 | ||||
| -rw-r--r-- | system/gaming/steam.nix | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/system/gaming/default.nix b/system/gaming/default.nix index 606f565..ca97345 100644 --- a/system/gaming/default.nix +++ b/system/gaming/default.nix @@ -49,5 +49,11 @@ in { environment.systemPackages = with pkgs; [ winetricks ]; + + services.udev.packages = with pkgs; [ + cachyos-settings + ]; + + environment.etc."sysctl.d/70-cachyos-settings.conf".source = "${pkgs.cachyos-settings}/etc/sysctl.d/70-cachyos-settings.conf"; }; } diff --git a/system/gaming/steam.nix b/system/gaming/steam.nix index dd4fc50..dca5c25 100644 --- a/system/gaming/steam.nix +++ b/system/gaming/steam.nix @@ -17,7 +17,7 @@ in { programs.gamescope = { enable = true; - capSysNice = true; + capSysNice = false; }; programs.steam = { |