mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-11-23 20:43:04 +01:00
profile/gaming: fix steam with gamemode
Some checks failed
/ Build Nix targets (push) Has been cancelled
Some checks failed
/ Build Nix targets (push) Has been cancelled
This commit is contained in:
parent
9a37a1c49f
commit
e60d5690d5
1 changed files with 10 additions and 1 deletions
|
|
@ -29,7 +29,16 @@ in
|
|||
winetricks
|
||||
];
|
||||
|
||||
programs.steam.enable = true;
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
# fix gamemode: https://github.com/NixOS/nixpkgs/issues/389142
|
||||
package = pkgs.steam.override {
|
||||
extraPkgs =
|
||||
pkgs: with pkgs; [
|
||||
gamemode
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
hardware = {
|
||||
graphics.enable32Bit = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue