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