Second fix on new structure

This commit is contained in:
Laurent Gueret
2026-02-11 13:27:09 +01:00
parent 6456c71f20
commit 206b9b6050
5 changed files with 8 additions and 8 deletions
+18
View File
@@ -0,0 +1,18 @@
{ lib, config, ... }:
with lib;
let
cfg = config.home.shell.neovim;
in
{
options.home.shell.neovim = {
enable = mkEnableOption "System neovim service";
};
config = mkIf cfg.enable {
programs.neovim = {
enable = true;
defaultEditor = true;
};
};
}