This commit is contained in:
iFargle 2023-08-19 09:17:19 +09:00
parent 367424a059
commit 609bfec569
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@
programs.gamemode = {
enable = true;
settings = {
nv_powermizer_mode = 1;
nv_powermizer_mode = "1";
custom = {
start = "${pkgs.libnotify}/bin/notify-send 'GameMode started'";
end = "${pkgs.libnotify}/bin/notify-send 'GameMode ended'";

View file

@ -34,6 +34,6 @@
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}