mirror of
https://github.com/materusPL/nixos-config
synced 2026-04-19 11:27:22 +02:00
22 lines
388 B
Nix
22 lines
388 B
Nix
isHm:
|
|
{ lib, materusArgs, config, ... }:
|
|
{
|
|
|
|
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;
|
|
|
|
}
|