mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2025-02-22 15:50:01 +00:00
14 lines
227 B
Nix
14 lines
227 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
options = {editor.enable = lib.mkEnableOption "enable editor";};
|
||
|
config = lib.mkIf config.editor.enable {
|
||
|
programs.neovim = {
|
||
|
enable = true;
|
||
|
defaultEditor = true;
|
||
|
};
|
||
|
};
|
||
|
}
|