diff --git a/modules/home-manager/neovim/default.nix b/modules/home-manager/neovim/default.nix index e6d5585..7d19145 100644 --- a/modules/home-manager/neovim/default.nix +++ b/modules/home-manager/neovim/default.nix @@ -1,12 +1,10 @@ -{ ... }: +{ pkgs, ... }: { programs.neovim = { enable = true; - }; - - home.file.".config/nvim" = { - recursive = true; - source = ./config; - }; -} \ No newline at end of file + package = pkgs.neovim-nightly; + vimAlias = true; + vimdiffAlias = true; + }; +}