Files
nix-config/modules/graphical/gamemode.nix
2023-12-09 10:46:28 +01:00

12 lines
248 B
Nix

{ config, lib, pkgs, ... }:
{
programs.gamemode = {
enable = true;
settings.custom = {
start = "${pkgs.libnotify}/bin/notify-send 'GameMode started'";
end = "${pkgs.libnotify}/bin/notify-send 'GameMode ended'";
};
};
}