aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspl3g <spleefer6@yandex.ru>2024-11-17 13:22:31 +0300
committerspl3g <spleefer6@yandex.ru>2025-05-01 14:58:56 +0300
commit27b523a31cc6983821e22b04dba51358234e4548 (patch)
tree235b4f0b77eb20e348caea66624d33afa2468a32
parent8041aab8bc1c287acc687bf28a3fb782c9fa6a77 (diff)
fix: use the actual neovim package name
-rw-r--r--shell.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell.nix b/shell.nix
index 1288d38..f8bd925 100644
--- a/shell.nix
+++ b/shell.nix
@@ -5,6 +5,6 @@
default = pkgs.mkShell {
# Enable experimental features without having to specify the argument
NIX_CONFIG = "experimental-features = nix-command flakes";
- nativeBuildInputs = with pkgs; [ nix home-manager git nvim ];
+ nativeBuildInputs = with pkgs; [ nix home-manager git neovim ];
};
}