nixos-config/modules/home-manager/neovim/default.nix
2024-07-19 04:30:16 +09:00

12 lines
141 B
Nix

{ ... }:
{
programs.neovim = {
enable = true;
};
home.file.".config/nvim" = {
recursive = true;
source = ./config;
};
}