add gaming

This commit is contained in:
2025-11-05 19:05:56 -06:00
parent 85c8b9ec1c
commit e329c17546
7 changed files with 117 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
pkgs,
lib,
config,
...
}: let
cfg = config.gaming.gamemode;
in {
options.gaming.gamemode = {
enable = lib.mkEnableOption "enable lutris";
};
config = lib.mkIf cfg.enable {
# enable gamemode for game optimizations
# requires setting launch option `gamemoderun %command%`
programs.gamemode.enable = true;
};
}