infrastructure/nixos-configurations/lindberg-build/applications/default.nix
Fabian Hauser df41008026
Some checks failed
CI / build (push) Has been cancelled
Refactor attic configuration as module
2024-12-08 17:45:54 +02:00

24 lines
565 B
Nix

{
config,
pkgs,
lib,
...
}:
{
imports = [
./nixpkgs-cache.nix
];
qois.git-ci-runner.enable = true;
qois.attic.enable = true;
qois.postgresql.package = pkgs.postgresql_15;
# Remove substituters that are hosted on this node, to prevent lockups
# since the current nix implementation is not forgiving with unavailable subsituters.
# 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"
];
}