#2 adding basic configs still some missing

This commit is contained in:
Christoph Hollizeck 2024-03-26 14:42:36 +00:00
parent 1286b79757
commit 69cb32282f
9 changed files with 114 additions and 10 deletions

View file

@ -0,0 +1,15 @@
{ options, config, lib, pkgs, ... }:
with lib;
with lib.wyrdgard;
let cfg = config.wyrdgard.submodules.games;
in
{
options.wyrdgard.submodules.games = with types; {
enable = mkBoolOpt false "Whether or not you want to enable non steam games such as minecraft";
};
config = mkIf cfg.enable { };
}