17 lines
254 B
Nix
17 lines
254 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.home.editors;
|
|
in
|
|
{
|
|
options.home.editors = {
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = "Text, media & audio editors configurations.";
|
|
};
|
|
};
|
|
}
|