feat: Add overlay for neovim-nightly

This commit is contained in:
ulic-youthlic 2025-10-18 23:10:53 +08:00
parent 3411e90b3f
commit c0e4f56278
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
2 changed files with 9 additions and 0 deletions

View file

@ -16,6 +16,7 @@ in
./zulip.nix ./zulip.nix
./spotifyd.nix ./spotifyd.nix
./nautilus.nix ./nautilus.nix
./neovim-nightly.nix
# Nur # Nur
./nur.nix ./nur.nix

View file

@ -0,0 +1,8 @@
{ inputs, ... }:
_final: prev:
let
inherit (prev.stdenv.hostPlatform) system;
in
{
neovim-nightly = inputs.neovim-nightly.packages.${system}.neovim;
}