1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 04:53:33 +02:00

nixos module: we need a running nix-daemon

Make sure the nix-daemon is prepared before we attempt to do the user
activation otherwise the script may fail due to not being able to
communicate.
This commit is contained in:
Robert Helgesson 2018-07-21 13:15:34 +02:00
parent d3871ed774
commit 9570cedff6
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -36,6 +36,8 @@ in
nameValuePair ("home-manager-${utils.escapeSystemdPath username}") {
description = "Home Manager environment for ${username}";
wantedBy = [ "multi-user.target" ];
wants = [ "nix-daemon.socket" ];
after = [ "nix-daemon.socket" ];
serviceConfig = {
User = username;