diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -61,5 +61,16 @@ ]; }; }; + homeConfigurations = { + inherit inputs system pkgs; + "void" = home-manager.lib.homeManagerConfiguration { +# inherit pkgs; + pkgs = nixpkgs.legacyPackages.${system}; + modules = [ ./void/home.nix ]; + extraSpecialArgs = { + inherit system inputs pkgs; + }; + }; + }; }; } |