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