remove old Node.js Nix packages and directly query them from pkgs instead

This commit is contained in:
Ilka Schulz
2026-06-05 07:16:48 +02:00
parent 86442428e5
commit 5c60002cd9
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -144,7 +144,7 @@
cargo-release
clippy
rustfmt
nodePackages.prettier
prettier
nushell # for the .ci/gen-workflow-files.nu script
proverif-patched
];
@@ -159,7 +159,7 @@
cargo-release
cargo-vet
rustfmt
nodePackages.prettier
prettier
nushell # for the .ci/gen-workflow-files.nu script
proverif-patched
pkgs.cargo-llvm-cov
+6 -6
View File
@@ -13,16 +13,16 @@
"*.json5"
"*.md"
"*.mdx"
"*.toml"
"*.yaml"
"*.yml"
];
excludes = [ "supply-chain/*" ];
settings = {
plugins = [
"${pkgs.nodePackages.prettier-plugin-toml}/lib/node_modules/prettier-plugin-toml/lib/index.js"
];
};
};
programs.taplo = {
enable = true;
includes = [
"*.toml"
];
};
programs.rustfmt.enable = true;
}