nixos-config/modules/system/programs/gaming/default.nix

8 lines
127 B
Nix
Raw Normal View History

2025-02-02 13:09:27 -05:00
{ config, ... }:
2024-10-09 03:36:08 -04:00
{
2025-02-02 13:09:27 -05:00
programs.gamemode = {
enable = config.system.desktop.enable;
settings.general.renice = 10;
};
2024-08-24 22:16:51 -04:00
}