home: adjust for home-manager 22.11
This commit is contained in:
parent
6722c604c3
commit
a13f97b70e
1 changed files with 8 additions and 4 deletions
12
flake.nix
12
flake.nix
|
@ -90,10 +90,14 @@
|
||||||
|
|
||||||
homeConfigurations = {
|
homeConfigurations = {
|
||||||
max = inputs.home-manager.lib.homeManagerConfiguration {
|
max = inputs.home-manager.lib.homeManagerConfiguration {
|
||||||
inherit system;
|
inherit pkgs;
|
||||||
homeDirectory = "/home/max";
|
modules = [
|
||||||
username = "max";
|
{
|
||||||
configuration.imports = [ ./users/max/home.nix ];
|
home.homeDirectory = "/home/max";
|
||||||
|
home.username = "max";
|
||||||
|
}
|
||||||
|
./users/max/home.nix
|
||||||
|
];
|
||||||
extraSpecialArgs = { inherit inputs; };
|
extraSpecialArgs = { inherit inputs; };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue