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; + }; +}