mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
20 lines
272 B
Nix
20 lines
272 B
Nix
{
|
|
meta,
|
|
config,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}:
|
|
with lib; {
|
|
home-manager = {
|
|
extraSpecialArgs = {
|
|
inherit inputs meta;
|
|
nixos = config;
|
|
};
|
|
sharedModules = [
|
|
meta.modules.home
|
|
];
|
|
useUserPackages = true;
|
|
useGlobalPkgs = true;
|
|
};
|
|
}
|