nix-config/modules/features/editor-neovim-package.nix
2026-04-15 18:26:05 -04:00

8 lines
150 B
Nix

{ ... }:
{
config.dendritic.features.editor-neovim.homeModules = [
({ pkgs, ... }: {
home.packages = with pkgs; [ neovim ];
})
];
}