nix-check-deps: ship it

This commit is contained in:
2025-05-13 01:54:42 +00:00
parent 78f42f984d
commit 218e06a8a8

View File

@@ -199,8 +199,9 @@ in
"dasht" # docset documentation viewer "dasht" # docset documentation viewer
# "gh" # MS GitHub cli # "gh" # MS GitHub cli
"haredoc" "haredoc"
"nix-check-deps" # run `nix-check-deps packageName -f .` before submitting stuff upstream
"nix-index" "nix-index"
"nixfmt-rfc-style" # run `nixpkgs path/to/package.nix` before submitting stuff upstream "nixfmt-rfc-style" # run `nixfmt path/to/package.nix` before submitting stuff upstream
"nixpkgs-hammering" "nixpkgs-hammering"
"nixpkgs-review" "nixpkgs-review"
"qmk-udev-rules" "qmk-udev-rules"
@@ -890,6 +891,12 @@ in
nixd.sandbox.whitelistPwd = true; nixd.sandbox.whitelistPwd = true;
nix-check-deps.sandbox.whitelistPwd = true;
nix-check-deps.sandbox.net = "all";
nix-check-deps.sandbox.extraPaths = [
"/nix/var"
];
nix-tree.sandbox.extraPaths = [ nix-tree.sandbox.extraPaths = [
"/nix/var" "/nix/var"
]; ];