17 lines
289 B
Nix
17 lines
289 B
Nix
|
{pkgs, ...}: {
|
||
|
programs = {
|
||
|
steam = {
|
||
|
enable = true;
|
||
|
gamescopeSession.enable = true;
|
||
|
extraCompatPackages = [
|
||
|
pkgs.proton-ge-bin
|
||
|
];
|
||
|
};
|
||
|
gamemode.enable = true;
|
||
|
coolercontrol = {
|
||
|
enable = true;
|
||
|
nvidiaSupport = true;
|
||
|
};
|
||
|
};
|
||
|
}
|