home: adjust for home-manager 22.11

This commit is contained in:
Max Headroom 2022-07-22 00:18:31 +02:00
parent 6722c604c3
commit a13f97b70e

View file

@ -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; };
}; };
}; };