22 lines
388 B
Nix
Raw Normal View History

isHm:
{ lib, materusArgs, config, ... }:
2026-02-08 10:52:41 +01:00
{
options.mkk.dir = lib.mkOption {
default = "${materusArgs.flake-path}";
type = lib.types.path;
};
options.mkk.var = lib.mkOption {
default = {};
type = lib.types.attrs;
};
imports = [
(import ./nvim.nix isHm)
];
config.mkk.var = import ./private/variables.nix;
config._module.args.mkk = config.mkk.var;
2026-02-08 10:52:41 +01:00
}