15 lines
213 B
Nix
15 lines
213 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.home-manager.nixosModules.home-manager
|
|
];
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.extraSpecialArgs = {
|
|
inherit inputs outputs;
|
|
};
|
|
|
|
}
|