feat: configure zed-editor with home-manager

This commit is contained in:
wi11-holdsworth 2025-10-07 23:37:22 +11:00
parent d7938744f2
commit 60b28baf63
5 changed files with 118 additions and 1 deletions

View file

@ -0,0 +1,19 @@
{
config,
lib,
...
}:
let
feature = "dev";
in
{
config = lib.mkIf config.${feature}.enable {
# keep-sorted start
zed-editor.enable = lib.mkDefault true;
# keep-sorted end
};
imports = [ ];
options.${feature}.enable = lib.mkEnableOption "enables ${feature}";
}