12 lines
248 B
Nix
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'";
|
|
};
|
|
};
|
|
}
|