9 lines
347 B
Nix
9 lines
347 B
Nix
{pkgs, ...}: {
|
||
programs.gamemode = {
|
||
enable = true;
|
||
settings.custom = {
|
||
start = "${pkgs.libnotify}/bin/notify-send 'GameMode Activated' 'GameMode Activated! Enjoy enhanced performance. 🚀'";
|
||
end = "${pkgs.libnotify}/bin/notify-send 'GameMode Deactivated' 'GameMode Deactivated. Back to normal mode. ⏹️'";
|
||
};
|
||
};
|
||
}
|