aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/nextcloud.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hm/sils/nextcloud.nix')
-rw-r--r--modules/hm/sils/nextcloud.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/hm/sils/nextcloud.nix b/modules/hm/sils/nextcloud.nix
deleted file mode 100644
index f71eb21..0000000
--- a/modules/hm/sils/nextcloud.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- cfg = config.sils.nextcloud;
-in {
- options.sils.nextcloud.enable = lib.mkEnableOption "the nextcloud desktop
- client";
- config = lib.mkIf cfg.enable {
- services.nextcloud-client = {
- enable = true;
- startInBackground = true;
- };
- };
-}