genHomes: fix typo

This commit is contained in:
Mateusz Słodkowicz 2023-06-07 17:55:29 +02:00
parent 25e2d084c3
commit 9f778ec43d
Signed by: materus
GPG Key ID: 28D140BCA60B4FD1
1 changed files with 3 additions and 3 deletions

View File

@ -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
]; ];
}; };