1
0
forked from extern/nix-config
donovanglover-nix-config/modules/gamemode.nix

20 lines
379 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
programs.gamemode = {
enable = true;
settings = {
general = {
renice = 10;
igpu_power_threshold = -1;
};
custom = {
start = "${pkgs.libnotify}/bin/notify-send 'Note' 'gamemode started from host.'";
2023-06-26 00:18:38 +02:00
end = "${pkgs.libnotify}/bin/notify-send 'Note' 'gamemode ended from host.'";
};
};
};
}