Use roslyn-nvim, fix some prefixes

This commit is contained in:
Smaug123
2024-03-25 23:44:29 +00:00
parent ae0713074f
commit 47fc4dfd39
8 changed files with 192 additions and 15 deletions

View File

@@ -24,10 +24,14 @@
whisper = {
url = "github:Smaug123/whisper.cpp/nix";
};
neovim-nightly = {
url = "github:nix-community/neovim-nightly-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
neovim-nightly,
darwin,
emacs,
nixpkgs,
@@ -35,14 +39,14 @@
apple-silicon,
whisper,
...
} @ inputs: let
}: let
config = {
# contentAddressedByDefault = true;
allowUnfree = true;
};
systems = ["aarch64-darwin" "aarch64-linux" "x86_64-linux"];
in let
overlays = [emacs.overlay] ++ import ./overlays.nix;
overlays = [emacs.overlay neovim-nightly.overlay] ++ import ./overlays.nix;
recursiveMerge = attrList: let
f = attrPath:
builtins.zipAttrsWith (n: values: