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