diff --git a/flake.nix b/flake.nix index b9df940..4662f5c 100644 --- a/flake.nix +++ b/flake.nix @@ -90,10 +90,14 @@ homeConfigurations = { max = inputs.home-manager.lib.homeManagerConfiguration { - inherit system; - homeDirectory = "/home/max"; - username = "max"; - configuration.imports = [ ./users/max/home.nix ]; + inherit pkgs; + modules = [ + { + home.homeDirectory = "/home/max"; + home.username = "max"; + } + ./users/max/home.nix + ]; extraSpecialArgs = { inherit inputs; }; }; };