feat: Remove nvchad nvim and neovim-nightly

This commit is contained in:
ulic-youthlic 2026-07-04 22:56:54 +08:00
parent 1c7c2a2692
commit d62f71605a
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
9 changed files with 28 additions and 234 deletions

View file

@ -54,7 +54,6 @@
zen-browser.enable = true;
openssh.enable = true;
helix.enable = true;
nvchad.enable = true;
# spacemacs.enable = true;
radicle.enable = true;
};

View file

@ -1,26 +0,0 @@
{
config,
lib,
pkgs,
...
}: let
cfg = config.david.programs.nvchad;
in {
options = {
david.programs.nvchad = {
enable = lib.mkEnableOption "nvchad";
};
};
config = lib.mkIf cfg.enable {
programs.nvchad = {
enable = true;
extraPackages = with pkgs; [
editor-runtime
pkg-config
];
neovim = pkgs.neovim-nightly;
backup = true;
};
};
}