From 275c7ba60b3a4628e109692670998d8469159cfd Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Sat, 20 Jan 2024 23:03:03 +0100 Subject: [PATCH] Add nextcloud sync support --- home/features/desktop/common/default.nix | 1 + home/features/desktop/common/nextcloud.nix | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 home/features/desktop/common/nextcloud.nix diff --git a/home/features/desktop/common/default.nix b/home/features/desktop/common/default.nix index 8d6de5f..fd2d5ff 100644 --- a/home/features/desktop/common/default.nix +++ b/home/features/desktop/common/default.nix @@ -6,6 +6,7 @@ ./font.nix ./playerctl.nix ./easyeffects.nix + ./nextcloud.nix ]; home.packages = with pkgs; [ diff --git a/home/features/desktop/common/nextcloud.nix b/home/features/desktop/common/nextcloud.nix new file mode 100644 index 0000000..7713ecd --- /dev/null +++ b/home/features/desktop/common/nextcloud.nix @@ -0,0 +1,3 @@ +{ + services.nextcloud-client.enable = true; +}