diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-02-11 22:19:37 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-02-11 22:33:44 -0600 |
| commit | 0a84e13afc368ceedf08b543de459d163b6c1211 (patch) | |
| tree | 85eed662f4825e14ce60b2eeee76f66cc37bba2f /flake.nix | |
| parent | 9596e0e75c6a49083167ef6e2edca9cc448695e1 (diff) | |
home: enable different users on same host
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -78,15 +78,15 @@ ]; }; - platformHome = name: platform: + platformHome = platform: let value = home platform; in { inherit value; - name = "${value.config.home.username}@${name}"; + name = "${value.config.home.username}@${value.config.local.hostname}"; }; in - mapAttrs' platformHome (importAll { root = ./home/platform; }); + mapAttrs' (_: platformHome) (importAll { root = ./home/platform; }); }; } |
