flake/nixos/profiles/desktop/addtional/gaming.nix

10 lines
347 B
Nix
Raw Normal View History

{pkgs, ...}: {
2023-10-16 08:26:06 +00:00
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. '";
};
};
}