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 = {
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; };
};
};