Skip to content

Commit

Permalink
nixos.general: add dependency for hm service and /run/user mount
Browse files Browse the repository at this point in the history
Homeage puts secrets to /run/user/$UID during home-manager activation.

See jordanisaacs/homeage#19
  • Loading branch information
Gerschtli committed Dec 7, 2021
1 parent 0175b76 commit 11ccf9a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions nixos/base/general.nix
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ in

system.stateVersion = "21.11";

systemd.services.home-manager-tobias = {
after = [ "run-user-${toString config.custom.ids.uids.tobias}.mount" ];
wants = [ "run-user-${toString config.custom.ids.uids.tobias}.mount" ];
};

time.timeZone = "Europe/Berlin";

users.users = {
Expand Down

0 comments on commit 11ccf9a

Please sign in to comment.