15 lines
284 B
Nix
15 lines
284 B
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.custom.programs.gamemode;
|
|
in
|
|
{
|
|
options.custom.programs.gamemode.enable = mkOption { default = false; };
|
|
|
|
config = mkIf cfg.enable {
|
|
# https://github.com/FeralInteractive/gamemode
|
|
programs.gamemode.enable = true;
|
|
};
|
|
}
|