nixos: use usercfg.home.username for username

Use `usercfg.home.username` for username instead of attribute name,
as this way we can change username regardless of the name of the attribute.
This commit is contained in:
Jaka Hudoklin 2019-05-24 09:17:25 +02:00 committed by Robert Helgesson
parent d726afd9e4
commit 2e13c3cdfd
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -60,28 +60,31 @@ in
}) cfg.users }) cfg.users
); );
systemd.services = mapAttrs' (username: usercfg: systemd.services = mapAttrs' (_: usercfg:
nameValuePair ("home-manager-${utils.escapeSystemdPath username}") { let
description = "Home Manager environment for ${username}"; username = usercfg.home.username;
wantedBy = [ "multi-user.target" ]; in
wants = [ "nix-daemon.socket" ]; nameValuePair ("home-manager-${utils.escapeSystemdPath username}") {
after = [ "nix-daemon.socket" ]; description = "Home Manager environment for ${username}";
wantedBy = [ "multi-user.target" ];
wants = [ "nix-daemon.socket" ];
after = [ "nix-daemon.socket" ];
serviceConfig = { serviceConfig = {
User = usercfg.home.username; User = usercfg.home.username;
Type = "oneshot"; Type = "oneshot";
RemainAfterExit = "yes"; RemainAfterExit = "yes";
SyslogIdentifier = "hm-activate-${username}"; SyslogIdentifier = "hm-activate-${username}";
# The activation script is run by a login shell to make sure # The activation script is run by a login shell to make sure
# that the user is given a sane Nix environment. # that the user is given a sane Nix environment.
ExecStart = pkgs.writeScript "activate-${username}" '' ExecStart = pkgs.writeScript "activate-${username}" ''
#! ${pkgs.stdenv.shell} -el #! ${pkgs.stdenv.shell} -el
echo Activating home-manager configuration for ${username} echo Activating home-manager configuration for ${username}
exec ${usercfg.home.activationPackage}/activate exec ${usercfg.home.activationPackage}/activate
''; '';
}; };
} }
) cfg.users; ) cfg.users;
}; };
} }