From 929ecd64b01c06c91e91b51131618181f0523f4d Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Thu, 19 Jun 2025 17:22:42 +0200 Subject: [PATCH] hurricane: 40 current 2025-06-19 17:22:37 25.05.20250617.36ab78d 6.15.2 * nextcloud autostart service hurricane: 41 current 2025-06-19 17:28:13 25.05.20250617.36ab78d 6.15.2 * --- modules/common.nix | 7 ++++--- modules/home/nextcloud.nix | 11 +++++++++++ 2 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 modules/home/nextcloud.nix diff --git a/modules/common.nix b/modules/common.nix index 5bfda74..f00d137 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -25,9 +25,10 @@ ./home/hyprland.nix # Hyprland window manager user config ./home/home-manager.nix # Base user environment ./home/hyprlock.nix # Hyprlock screen lock user config - ./home/rofi.nix # Rofi user config - ./home/ghostty.nix # Ghostty user config - ./home/gtk.nix # GTK user config + ./home/rofi.nix # Rofi theme/config + ./home/ghostty.nix # Ghostty config + ./home/gtk.nix # GTK theme + ./home/nextcloud.nix # Nextcloud autostart ]; }; diff --git a/modules/home/nextcloud.nix b/modules/home/nextcloud.nix new file mode 100644 index 0000000..bc58165 --- /dev/null +++ b/modules/home/nextcloud.nix @@ -0,0 +1,11 @@ +{lib, ...}: { + services.nextcloud-client = { + enable = true; + startInBackground = true; + }; + systemd.user.services.nextcloud-client = { + Unit = { + After = lib.mkForce "graphical-session.target"; + }; + }; +}