trying to get main config to run

This commit is contained in:
christoph.hollizeck 2024-03-26 18:48:58 +01:00
parent 829d0d076d
commit 88f574eb38
7 changed files with 117 additions and 27 deletions

View file

@ -7,9 +7,16 @@ 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";
enable = mkBoolOpt false "Whether or not you want to enable steam and other games";
};
config = mkIf cfg.enable { };
config = mkIf cfg.enable {
wyrdgard = {
apps = {
steam = enabled;
};
};
};
}