aboutsummaryrefslogtreecommitdiff
path: root/overlays
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--overlays-system.nix2
-rw-r--r--overlays/neovim.nix9
2 files changed, 7 insertions, 4 deletions
diff --git a/overlays-system.nix b/overlays-system.nix
index e87d212..8de97c5 100644
--- a/overlays-system.nix
+++ b/overlays-system.nix
@@ -7,6 +7,6 @@ in
pass-with-dmenu
qutebrowser
j4-dmenu-desktop
- # neovim-nightly
+ neovim-nightly
];
}
diff --git a/overlays/neovim.nix b/overlays/neovim.nix
index 915c1e0..5e55257 100644
--- a/overlays/neovim.nix
+++ b/overlays/neovim.nix
@@ -1,3 +1,6 @@
-import (builtins.fetchTarball {
- url = "https://github.com/nix-community/neovim-nightly-overlay/archive/master.tar.gz";
-})
+let
+ rev = "95727f7d4ebe43435c826ab618933198ab30effe"; # "master" (6th Aug 2025)
+in
+ import (builtins.fetchTarball {
+ url = "https://github.com/nix-community/neovim-nightly-overlay/archive/${rev}.tar.gz";
+ })