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,8 +7,14 @@ let
in
{
options.wyrdgard.submodules.socials = with types; {
enable = mkBoolOpt false "Whether to enable a social apps";
enable = mkBoolOpt false "Whether to enable social apps";
};
config = mkIf cfg.enable {
wyrdgard = {
apps = {
discord = enabled;
};
};
};
}