add (home options): all my editors configuration options
This commit is contained in:
parent
fbb1bd2530
commit
453e0b68eb
3 changed files with 422 additions and 0 deletions
17
options/home/editors/default.nix
Normal file
17
options/home/editors/default.nix
Normal 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.";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in a new issue