Enable strictDeps on all our toplevel packages #12

Open
abonerib wants to merge 473 commits from abonerib/bscpkgs:enableStrictDeps into master
Showing only changes of commit eb9876aff6 - Show all commits

View File

@ -12,6 +12,10 @@
registrationConfigFile = config.age.secrets.ovniToken.path; registrationConfigFile = config.age.secrets.ovniToken.path;
executor = "shell"; executor = "shell";
tagList = [ "nix" "xeon" ]; tagList = [ "nix" "xeon" ];
registrationFlags = [
# Using space doesn't work, and causes it to misread the next flag
"--locked='false'"
];
environmentVariables = { environmentVariables = {
SHELL = "${pkgs.bash}/bin/bash"; SHELL = "${pkgs.bash}/bin/bash";
}; };
@ -20,7 +24,10 @@
registrationConfigFile = config.age.secrets.ovniToken.path; registrationConfigFile = config.age.secrets.ovniToken.path;
dockerImage = "debian:stable"; dockerImage = "debian:stable";
tagList = [ "docker" "xeon" ]; tagList = [ "docker" "xeon" ];
registrationFlags = [ "--docker-network-mode host" ]; registrationFlags = [
"--locked='false'"
"--docker-network-mode host"
];
environmentVariables = { environmentVariables = {
https_proxy = "http://localhost:23080"; https_proxy = "http://localhost:23080";
http_proxy = "http://localhost:23080"; http_proxy = "http://localhost:23080";