Remove self-hosted subsitution services from lindberg-build
This commit is contained in:
parent
01b1654639
commit
1b3a091fae
1 changed files with 13 additions and 1 deletions
|
@ -1,4 +1,9 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
||||
imports = [
|
||||
|
@ -8,4 +13,11 @@
|
|||
|
||||
qois.git-ci-runner.enable = true;
|
||||
qois.postgresql.package = pkgs.postgresql_15;
|
||||
|
||||
# Remove substituters that are hosted on this node, to prevent lockups.
|
||||
# The qois-infrastructure cache is not needed,
|
||||
# since the builds are done (and cached) on this host anyway.
|
||||
nix.settings.substituters = lib.mkForce [
|
||||
"https://cache.nixos.org?priority=40"
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue