summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index 99e0c70..2449a4b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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; });
};
}