22 lines
316 B
Nix
22 lines
316 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: {
|
||
|
config = lib.mkIf config.local.profiles.gaming.enable {
|
||
|
programs = {
|
||
|
steam = {
|
||
|
enable = true;
|
||
|
};
|
||
|
|
||
|
gamemode.enable = true;
|
||
|
gamescope.enable = true;
|
||
|
|
||
|
coolercontrol = {
|
||
|
enable = true;
|
||
|
nvidiaSupport = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|