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 be4741c commit b1763c7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions modules/workstation/nextcloud-client.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,12 @@ _: {
hm.services.nextcloud-client.enable = true;

environment.persistence."/state".users.rg.directories = [ ".config/Nextcloud" ];


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

0 comments on commit b1763c7

Please sign in to comment.