17 lines
373 B
Nix
17 lines
373 B
Nix
|
|
{ inputs, lib, ... }:
|
||
|
|
{
|
||
|
|
imports = [
|
||
|
|
inputs.home-manager.flakeModules.home-manager
|
||
|
|
inputs.flake-aspects.flakeModule
|
||
|
|
inputs.flake-parts.flakeModules.modules
|
||
|
|
inputs.flake-file.flakeModules.default
|
||
|
|
inputs.den.flakeModule
|
||
|
|
];
|
||
|
|
|
||
|
|
# ----- config.meta
|
||
|
|
options = {
|
||
|
|
meta = lib.mkOption {
|
||
|
|
type = with lib.types; lazyAttrsOf anything;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|