nix-config/modules/features/editor-neovim-package.nix

11 lines
172 B
Nix

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