mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
14 lines
275 B
Nix
14 lines
275 B
Nix
{ config, tree, machine, ... }: {
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
sharedModules = [
|
|
tree.home.modules
|
|
tree.system.modules
|
|
];
|
|
extraSpecialArgs = {
|
|
inherit tree machine;
|
|
nixos = config;
|
|
};
|
|
};
|
|
}
|