bump home-manager stateversion

This commit is contained in:
2024-01-31 22:33:15 +01:00
parent 542c96597e
commit f8a81ff83b
2 changed files with 5 additions and 4 deletions
+4 -3
View File
@@ -281,9 +281,9 @@
};
});
homeConfigurations = forAllSystems ({ pkgs, flakes, ... }: let
homeConfigurations = forAllSystems ({ system, ... }: let
mkHome = user: home: inputs: modules: inputs.home-manager.lib.homeManagerConfiguration {
inherit pkgs;
pkgs = inputs.nixpkgs.legacyPackages.${system};
modules = modules ++ [{
home.username = user;
home.homeDirectory = home;
@@ -292,7 +292,8 @@
];
}];
extraSpecialArgs = {
inherit inputs flakes;
inherit inputs;
flakes = mkFlakeView inputs system;
};
};
in {