neovim now managed by nvf, and flake lock

This commit is contained in:
cnst
2024-12-08 21:01:26 +01:00
parent 0317b89498
commit 9c3995770d
18 changed files with 115 additions and 796 deletions

View File

@@ -0,0 +1,17 @@
{
config,
lib,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.home.programs.zed-editor;
in {
options = {
home.programs.zed-editor.enable = mkEnableOption "Enables zed-editor";
};
config = mkIf cfg.enable {
programs.zed-editor = {
enable = true;
};
};
}