mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
18 lines
308 B
Nix
18 lines
308 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
|
|
];
|
|
useUserPackages = true;
|
|
useGlobalPkgs = true;
|
|
};
|
|
}
|