This commit is contained in:
陈浩南 2023-10-04 15:46:55 +08:00
parent 4b5078a76c
commit 15d89d99ad
2 changed files with 2 additions and 1 deletions

View File

@ -378,6 +378,7 @@
synapse.instances."synapse.chn.moe" = {};
vaultwarden.enable = true;
photoprism.instances."photoprism.chn.moe" = {};
nextcloud.instances."nextcloud.chn.moe" = {};
};
};
wallabag.enable = true;

View File

@ -2,7 +2,7 @@ inputs:
{
options.nixos.services.nextcloud = let inherit (inputs.lib) mkOption types; in
{
enable = mkOption { type = types.bool; default = true; };
enable = mkOption { type = types.bool; default = false; };
hostname = mkOption { type = types.str; default = "nextcloud.chn.moe"; };
};
config =