diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-03-03 22:51:57 -0500 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-03-03 22:51:57 -0500 |
| commit | 1eeac2ea610328dfaca0b65d88471b57a04d5a8b (patch) | |
| tree | 181d33b6e5bd79b473f5f3707c52e8e12fe491ec /flake.nix | |
| parent | 25ed6898befb1c5d35b5517d60633c2a4d8eb540 (diff) | |
| download | home-1eeac2ea610328dfaca0b65d88471b57a04d5a8b.tar.gz | |
setup on laptop
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; + }; + }; + }; }; } |