Compare commits
2 Commits
c5590838e2
...
ffbb81947e
| Author | SHA1 | Date | |
|---|---|---|---|
| ffbb81947e | |||
| e615048e8c |
@ -38,6 +38,7 @@ in {
|
|||||||
haskell-language-server
|
haskell-language-server
|
||||||
lua-language-server
|
lua-language-server
|
||||||
nil
|
nil
|
||||||
|
nixd
|
||||||
pyright
|
pyright
|
||||||
rust-analyzer
|
rust-analyzer
|
||||||
texlab
|
texlab
|
||||||
@ -862,6 +863,21 @@ in {
|
|||||||
{name = "cmake";}
|
{name = "cmake";}
|
||||||
{name = "lua_ls";}
|
{name = "lua_ls";}
|
||||||
{name = "nil_ls";}
|
{name = "nil_ls";}
|
||||||
|
{
|
||||||
|
name = "nixd";
|
||||||
|
# TODO: Figure out how to structure this attrset
|
||||||
|
extraOptions = {
|
||||||
|
nixd = {
|
||||||
|
diagnostic = {
|
||||||
|
suppress = [
|
||||||
|
"sema-escaping-with"
|
||||||
|
"var-bind-to-this"
|
||||||
|
"escaping-this-with"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
{name = "pyright";}
|
{name = "pyright";}
|
||||||
{name = "texlab";}
|
{name = "texlab";}
|
||||||
|
|
||||||
|
|||||||
@ -80,6 +80,9 @@ with mylib.networking; {
|
|||||||
# as nix shell nixpkgs#name) consistent with your flake inputs.
|
# as nix shell nixpkgs#name) consistent with your flake inputs.
|
||||||
# (Registry contains flakes)
|
# (Registry contains flakes)
|
||||||
registry = lib.mapAttrs' (n: v: lib.nameValuePair n {flake = v;}) inputs;
|
registry = lib.mapAttrs' (n: v: lib.nameValuePair n {flake = v;}) inputs;
|
||||||
|
|
||||||
|
# Set NIX_PATH to find nixpgks
|
||||||
|
nixPath = ["nixpkgs=${inputs.nixpkgs.outPath}" "home-manager=${inputs.home-manager.outPath}"];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Bootloader/Kernel stuff
|
# Bootloader/Kernel stuff
|
||||||
|
|||||||
Reference in New Issue
Block a user