saturnOS/hosts/uranus/default.nix

22 lines
362 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
];
programs.steam.enable = true;
programs.gamemode = {
enable = true;
settings = {
general = {
renice = 10;
};
# Warning: GPU optimisations have the potential to damage hardware
gpu = {
apply_gpu_optimisations = "accept-responsibility";
gpu_device = 0;
};
};
};
}