From 877abc3cebf5a7c28731e1531ef832d6d0f427da Mon Sep 17 00:00:00 2001 From: Andrew Date: Sat, 8 Nov 2025 16:39:09 -0500 Subject: fix neovim by removing stylix target --- neovim.nix | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) (limited to 'neovim.nix') diff --git a/neovim.nix b/neovim.nix index de61b98..6bab47a 100644 --- a/neovim.nix +++ b/neovim.nix @@ -4,17 +4,24 @@ pkgs, inputs, ... -}: let -dotfiles.mutable = true; -dotfiles.path = "${config.home.homeDirectory}/.dotfiles"; - filePath = "${config.dotfiles.path}/astronvim-config"; - configSrc = - config.lib.file.mkOutOfStoreSymlink filePath; -in { - xdg.configFile."nvim".source = ./astronvim-config; +}: { + home.file.".config/nvim".source = config.lib.file.mkOutOfStoreSymlink "/home/andrew/.dotfiles/astronvim-config"; + programs.ripgrep.enable = true; + programs.lazygit.enable = true; + programs.bottom.enable = true; + + # home.persistence."/persist${config.home.homeDirectory}" = { + # directories = [ + # ".local/share/nvim" + # ".local/state/nvim" + # ".cache/nvim" + # ]; + # }; programs.neovim = { enable = true; + withPython3 = true; + withNodeJs = true; defaultEditor = true; }; } -- cgit v1.3.1