This commit is contained in:
2023-07-20 22:53:35 +01:00
parent f6c2446196
commit e4b1987e3e
2 changed files with 13 additions and 3 deletions

View File

@@ -1,8 +1,17 @@
{pkgs, ...}: let
nvim = pkgs.fetchgit {
nvim = pkgs.stdenv.mkDerivation {
name = "nvim";
src = pkgs.fetchgit {
url = "https://git.broccoli.town/dp/nvim";
sha256 = "sha256-yhbgfKarel8ACIWvIw2fM1qFoZnH8O+5+oNVnMZwdjo=";
};
installPhase = ''
mkdir -p $out
cp -r * $out/
rm $out/lazy-lock.json
'';
};
in {
programs.neovim.enable = true;

View File

@@ -28,6 +28,7 @@
elixir_ls
entr
erlang
gnumake
go
gopls
minisign