diff options
author | tv <tv@shackspace.de> | 2015-10-19 21:20:38 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-10-19 21:20:38 +0200 |
commit | 5fdae43a99af8783549e8b7d1424556d1f219bf6 (patch) | |
tree | a27146bdc1049bb794b230b4cc1e0da833e34165 /krebs/default.nix | |
parent | dc52c4b988ba1e64bf91567f06b89586ca92fa47 (diff) |
move user namespaces into "users" attribute
IOW get ${user-name} -> get users.${user-name}
Diffstat (limited to 'krebs/default.nix')
-rw-r--r-- | krebs/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/krebs/default.nix b/krebs/default.nix index b98fad558..6e2aa2f9e 100644 --- a/krebs/default.nix +++ b/krebs/default.nix @@ -132,7 +132,7 @@ stockholm = import ../. current; get-config = system: - stockholm.${current-user-name}.${system}.config + stockholm.users.${current-user-name}.${system}.config or (abort "unknown system: ${system}"); doc = s: @@ -181,6 +181,7 @@ --profile ${lib.shell.escape config.krebs.build.profile} \ --set \ -A ${lib.escapeShellArg (lib.concatStringsSep "." [ + "users" config.krebs.build.user.name config.krebs.build.host.name "system" |