diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 37 |
1 files changed, 21 insertions, 16 deletions
@@ -135,22 +135,27 @@ ]; }; - homeConfigurations.ebisu = home-manager.lib.homeManagerConfiguration { - pkgs = nixpkgsFor."${system}"; - - modules = [ - ./home/ebisu - chaotic.homeManagerModules.default - ]; - - extraSpecialArgs = { - inherit - inputs - outputs - self - secrets - ; + homeConfigurations.ebisu = + let + username = "ebisu"; + in + home-manager.lib.homeManagerConfiguration { + pkgs = nixpkgsFor."${system}"; + + modules = [ + ./home/${username} + chaotic.homeManagerModules.default + ]; + + extraSpecialArgs = { + inherit + inputs + outputs + self + secrets + username + ; + }; }; - }; }; } |