added stuff
This commit is contained in:
parent
937f28770d
commit
236b8c2a6b
907 changed files with 70990 additions and 0 deletions
19
nyx/modules/options/usrEnv/programs/gaming.nix
Normal file
19
nyx/modules/options/usrEnv/programs/gaming.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.options) mkEnableOption;
|
||||
inherit (config) modules;
|
||||
|
||||
sys = modules.system;
|
||||
prg = sys.programs;
|
||||
in {
|
||||
options.modules.usrEnv.programs.gaming = {
|
||||
enable = mkEnableOption "userspace gaming programs" // {default = prg.gaming.enable;};
|
||||
emulation.enable = mkEnableOption "programs required to emulate other platforms" // {default = prg.gaming.enable;};
|
||||
minecraft.enable = mkEnableOption "Minecraft launcher & JDKs" // {default = prg.gaming.enable;};
|
||||
chess.enable = mkEnableOption "Chess programs and engines" // {default = prg.gaming.enable;};
|
||||
mangohud.enable = mkEnableOption "MangoHud overlay" // {default = prg.gaming.enable;};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue