.hive/modules/home/nextcloud/default.nix

18 lines
295 B
Nix

{
config,
lib,
...
}: let
cfg = config.hive.nextcloud;
in {
options.hive.nextcloud = {
enable = lib.mkEnableOption "Enable Nextcloud client";
};
config = lib.mkIf cfg.enable {
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
};
}