This commit is contained in:
2026-07-12 15:25:55 -03:00
commit 29377d0c9a
160 changed files with 6138 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{ lib, config, pkgs, ... }:
{
options.custom = {
nvim.enable = lib.mkEnableOption "enable nvim - symlink config files";
};
config = lib.mkIf config.custom.nvim.enable {
home.packages = with pkgs; [
neovim
fzf
];
xdg.configFile."nvim".source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nixos-config/modules/home-manager/nvim/nvim";
};
}