Skip to content

Commit

Permalink
fix(untested): start nextcloud-client correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelsgirao committed Sep 19, 2024
1 parent b1763c7 commit 08f4eec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/workstation/nextcloud-client.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
_: {
{ lib, ... }: {
hm.services.nextcloud-client.enable = true;

environment.persistence."/state".users.rg.directories = [ ".config/Nextcloud" ];
Expand All @@ -7,7 +7,7 @@ _: {
# https://discourse.nixos.org/t/nextcloud-client-does-not-auto-start-in-gnome3/46492/7
systemd.user.services.nextcloud-client = {
Unit = {
After = pkgs.lib.mkForce "graphical-session.target";
After = lib.mkForce "graphical-session.target";
};
};
}

0 comments on commit 08f4eec

Please sign in to comment.