add (home options): all my editors configuration options

This commit is contained in:
Kirill Samoylenkov 2025-09-30 00:29:50 +05:00
parent fbb1bd2530
commit 453e0b68eb
3 changed files with 422 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{
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.";
};
};
}