From 95f31e1d7a6fa09733063dff0d7112480167b194 Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Sun, 15 Sep 2024 11:52:31 +0200 Subject: [PATCH] feat: nextcloud --- hosts/default/configuration.nix | 1 + hosts/default/home.nix | 1 + modules/home-manager/nextcloud.nix | 8 ++++++++ 3 files changed, 10 insertions(+) create mode 100644 modules/home-manager/nextcloud.nix diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 95db595..3151b47 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -128,6 +128,7 @@ spotify pass gnupg + nextcloud-client blueman pinentry-qt fastfetch diff --git a/hosts/default/home.nix b/hosts/default/home.nix index bc78619..78c27f1 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -9,6 +9,7 @@ ../../modules/home-manager/wofi.nix ../../modules/home-manager/waybar.nix ../../modules/home-manager/alacritty.nix + ../../modules/home-manager/nextcloud.nix ../../modules/home-manager/zsh.nix ]; home.username = "sprechtl"; diff --git a/modules/home-manager/nextcloud.nix b/modules/home-manager/nextcloud.nix new file mode 100644 index 0000000..0a9bd35 --- /dev/null +++ b/modules/home-manager/nextcloud.nix @@ -0,0 +1,8 @@ +{ config, pkgs, ... }: + +{ + services.nextcloud-client = { + enable = true; + startInBackground = true; + }; +}