commit 9694fb116b33ff5487ca654af37ac9a81ce903e8 parent 9f456fc9aff81606c1d805fbf0b6a575b4250a80 Author: GuyClicking <bpaul848@gmail.com> Date: Thu, 15 Apr 2021 02:38:52 +1000 home-manager only flake command but only in impure mode currently using `nix build .#home.activationPackage && ./result/activation` thanks arc Diffstat:
M | flake.nix | | | 11 | +++++++++++ |
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/flake.nix b/flake.nix @@ -33,5 +33,16 @@ } ]; }; + home = home-manager.lib.homeManagerConfiguration { + system = "x86_64-linux"; + homeDirectory = "/home/benjamin"; + username = "benjamin"; + configuration = { pkgs, ...}: { + nixpkgs.overlays = overlays; + imports = [ + ./home/home.nix + ]; + }; + }; }; }