feat(nvim): load devShells dynamically

This commit is contained in:
matt1432 2024-12-22 03:12:45 -05:00
parent b8d9e9ff92
commit 157a74df47
10 changed files with 159 additions and 69 deletions
lib/flake

View file

@ -19,6 +19,15 @@ inputs: rec {
{
inherit cudaSupport;
allowUnfree = true;
# FIXME: Roslyn-ls uses dotnet6 https://github.com/NixOS/nixpkgs/blob/d3c42f187194c26d9f0309a8ecc469d6c878ce33/pkgs/by-name/ro/roslyn-ls/package.nix#L21
permittedInsecurePackages =
[
"dotnet-core-combined"
"dotnet-sdk-6.0.428"
"dotnet-sdk-wrapped-6.0.428"
]
++ (cfg.config.permittedInsecurePackages or []);
}
// (cfg.config or {});
};