nixfiles/home/system.nix

19 lines
281 B
Nix

{
config,
tree,
machine,
...
}: {
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
sharedModules = with tree; [
home.modules
home.common
];
extraSpecialArgs = {
inherit tree machine;
nixos = config;
};
};
}