added home manager configurations to output

This commit is contained in:
Leyla Becker 2024-11-24 21:51:42 -06:00
parent 90f0c114b3
commit 3fdee879c7
9 changed files with 45 additions and 32 deletions

View file

@ -47,15 +47,15 @@ in {
];
};
# mkHome = user: host:
# home-manager.lib.homeManagerConfiguration {
# # pkgs = pkgsFor system;
# extraSpecialArgs = {
# inherit inputs util outputs;
# };
# modules = [
# # config
# outputs.homeManagerModules.default
# ];
# };
mkHome = user: host: system: osConfig:
home-manager.lib.homeManagerConfiguration {
pkgs = pkgsFor system;
extraSpecialArgs = {
inherit inputs util outputs osConfig;
};
modules = [
# outputs.homeManagerModules.default
../homes/${user}
];
};
}