diff --git a/apps/neovim.nix b/apps/neovim.nix deleted file mode 100644 index 876ea75..0000000 --- a/apps/neovim.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ unstable, ... }: { - programs.neovim = { - enable = true; - - viAlias = true; - vimAlias = true; - vimdiffAlias = true; - - defaultEditor = true; - }; -} diff --git a/home.nix b/home.nix index 96d5714..b60f8ab 100644 --- a/home.nix +++ b/home.nix @@ -53,9 +53,9 @@ in { # release notes. home.stateVersion = "23.11"; # Please read the comment before changing. - imports = [ - ./apps/neovim.nix - ]; + # imports = [ + # ./apps/neovim.nix + # ]; # The home.packages option allows you to install Nix packages into your # environment. @@ -102,7 +102,7 @@ in { (with pkgs-unstable; [ # I need fresssh stuff - neovim + # neovim ]); # Home Manager is pretty good at managing dotfiles. The primary way to manage @@ -124,6 +124,17 @@ in { EDITOR = "nvim"; }; + programs.neovim = { + enable = true; + package = pkgs-unstable.neovim-unwrapped; + + viAlias = true; + vimAlias = true; + vimdiffAlias = true; + + defaultEditor = true; + }; + programs.bash = { enable = true; shellAliases = myAliases;