export users home for home-manager --flake

home-manager --flake needs the activationPackage in the root of the
homeConfiguration
This commit is contained in:
Pacman99 2021-04-10 22:04:49 -07:00
parent d5175f6cca
commit 8ba7bffc3f

View file

@ -3,7 +3,7 @@
with lib;
let
mkHomes = host: config:
mapAttrs' (user: v: nameValuePair "${user}@${host}" v)
mapAttrs' (user: v: nameValuePair "${user}@${host}" v.home)
config.config.system.build.homes;
hmConfigs = mapAttrs mkHomes self.nixosConfigurations;