mirror of https://github.com/materusPL/Nixerus.git
genHomes: fix typo
This commit is contained in:
parent
25e2d084c3
commit
9f778ec43d
|
@ -1,6 +1,6 @@
|
||||||
{ inputs, materusFlake, ... }:
|
{ inputs, materusFlake, ... }:
|
||||||
let
|
let
|
||||||
profles = import ../profile;
|
profiles = import ../profile;
|
||||||
|
|
||||||
hosts = builtins.attrNames materusFlake.nixosConfigurations;
|
hosts = builtins.attrNames materusFlake.nixosConfigurations;
|
||||||
genHomes = username:
|
genHomes = username:
|
||||||
|
@ -18,7 +18,7 @@ let
|
||||||
modules = [
|
modules = [
|
||||||
./${username}
|
./${username}
|
||||||
../host/${host}/extraHome.nix
|
../host/${host}/extraHome.nix
|
||||||
profles.homeProfile
|
profiles.homeProfile
|
||||||
inputs.private.homeModule
|
inputs.private.homeModule
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@ -34,7 +34,7 @@ let
|
||||||
extraSpecialArgs = { inherit inputs; inherit materusFlake; };
|
extraSpecialArgs = { inherit inputs; inherit materusFlake; };
|
||||||
modules = [
|
modules = [
|
||||||
./${username}
|
./${username}
|
||||||
profles.homeProfile
|
profiles.homeProfile
|
||||||
inputs.private.homeModule
|
inputs.private.homeModule
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue