Rename delft to build
Delft was the location where this part of the infra started, but it has not been there in a few years now. Rename the directory to match the team name.
Martin Weinelt committed
Jun 22, 2024 at 01:08 UTC
e890dcb72509b86c1285817a24b54c62ee0e43da
72 files changed
+7
-7
.github/CODEOWNERS
+1
-1
@@ -1,7 +1,7 @@
1
# Every directory containing configurations impacting the core infra needs a
2
# review from a member of core infra.
3
/.github/ @NixOS/infra-build
4
-/delft/ @NixOS/infra-build
4
+/build/ @NixOS/infra-build
5
/hydra-packet-importer/ @NixOS/infra-build
6
/lib/ @NixOS/infra-build
7
/macs/ @NixOS/infra-build
build/.envrc
renamed
build/common.nix
renamed
build/datadog/hydra.nix
renamed
build/datadog/hydra.py
renamed
build/diffoscope.nix
renamed
build/flake.lock
renamed
build/flake.nix
renamed
build/haumea/boot.nix
renamed
build/haumea/default.nix
renamed
build/haumea/network.nix
renamed
build/haumea/postgresql.nix
renamed
build/haumea/zrepl.nix
renamed
build/hydra-logo.png
renamed
build/hydra-proxy.nix
renamed
build/hydra-scaler.nix
renamed
build/hydra.nix
renamed
build/id_buildfarm.pub
renamed
build/nginx-error-pages/503.html
renamed
build/packet-importer.nix
renamed
build/pluto/boot.nix
renamed
build/pluto/default.nix
renamed
build/pluto/disko.nix
renamed
build/pluto/grafana.nix
renamed
build/pluto/network.nix
renamed
build/pluto/nginx.nix
renamed
build/pluto/nixos-metrics.nix
renamed
build/pluto/prometheus/alertmanager.nix
renamed
build/pluto/prometheus/default.nix
renamed
build/pluto/prometheus/exporters/blackbox.nix
renamed
build/pluto/prometheus/exporters/channel-exporter.py
renamed
build/pluto/prometheus/exporters/channel.nix
renamed
build/pluto/prometheus/exporters/domain.nix
renamed
build/pluto/prometheus/exporters/fastly.nix
renamed
build/pluto/prometheus/exporters/github.nix
renamed
build/pluto/prometheus/exporters/hydra-queue-runner-reexporter.py
renamed
build/pluto/prometheus/exporters/hydra.nix
renamed
build/pluto/prometheus/exporters/json.nix
renamed
build/pluto/prometheus/exporters/matrix-synapse.nix
renamed
build/pluto/prometheus/exporters/nixos.nix
renamed
build/pluto/prometheus/exporters/node.nix
renamed
build/pluto/prometheus/exporters/packet-sd.nix
renamed
build/pluto/prometheus/exporters/packet-spot-market.nix
renamed
build/pluto/prometheus/exporters/postgresql.nix
renamed
build/pluto/prometheus/exporters/r13y.nix
renamed
build/pluto/prometheus/exporters/rfc39.nix
renamed
build/pluto/prometheus/exporters/zfs.nix
renamed
build/rhea/.terraform.lock.hcl
renamed
build/rhea/configuration.nix
renamed
build/rhea/hardware-configuration.nix
renamed
build/rhea/hetzner.nix
renamed
build/rhea/install.md
renamed
build/rhea/network.nix
renamed
build/rhea/terraform.tf
renamed
build/scripts/nix-mac-installer.sh
renamed
build/scripts/nix-mac-nuke.sh
renamed
build/secrets.nix
renamed
build/secrets/alertmanager-matrix-forwarder.age
renamed
build/secrets/fastly-read-only-api-token.age
renamed
build/secrets/hydra-mirror-aws-credentials.age
renamed
build/secrets/hydra-mirror-git-credentials.age
renamed
build/secrets/packet-sd-env.age
renamed
build/secrets/pluto-backup-secret.age
renamed
build/secrets/pluto-backup-ssh-key.age
renamed
build/secrets/prometheus-packet-spot-market-price-exporter.age
renamed
build/secrets/rfc39-credentials.age
renamed
build/secrets/rfc39-github.age
renamed
build/secrets/rfc39-record-push.age
renamed
build/secrets/tarball-mirror-aws-credentials.age
renamed
modules/hydra-mirror.nix
+2
-2
@@ -48,12 +48,12 @@ in
48
49
{
50
age.secrets.hydra-mirror-aws-credentials = {
51
- file = ../delft/secrets/hydra-mirror-aws-credentials.age;
51
+ file = ../build/secrets/hydra-mirror-aws-credentials.age;
52
owner = "hydra-mirror";
53
};
54
55
age.secrets.hydra-mirror-git-credentials = {
56
- file = ../delft/secrets/hydra-mirror-git-credentials.age;
56
+ file = ../build/secrets/hydra-mirror-git-credentials.age;
57
owner = "hydra-mirror";
58
};
59
modules/rfc39.nix
+3
-3
@@ -3,9 +3,9 @@
3
let
4
rfc39Secret = f: { file = f; owner = "rfc39"; };
5
in {
6
- age.secrets.rfc39-credentials = rfc39Secret ../delft/secrets/rfc39-credentials.age;
7
- age.secrets.rfc39-github = rfc39Secret ../delft/secrets/rfc39-github.age;
8
- age.secrets.rfc39-record-push = rfc39Secret ../delft/secrets/rfc39-record-push.age;
6
+ age.secrets.rfc39-credentials = rfc39Secret ../build/secrets/rfc39-credentials.age;
7
+ age.secrets.rfc39-github = rfc39Secret ../build/secrets/rfc39-github.age;
8
+ age.secrets.rfc39-record-push = rfc39Secret ../build/secrets/rfc39-record-push.age;
9
10
users.users.rfc39 = {
11
description = "RFC39 Maintainer Team Sync";
modules/tarball-mirror.nix
+1
-1
@@ -21,7 +21,7 @@ in
21
22
{
23
age.secrets.tarball-mirror-aws-credentials = {
24
- file = ../delft/secrets/tarball-mirror-aws-credentials.age;
24
+ file = ../build/secrets/tarball-mirror-aws-credentials.age;
25
owner = "tarball-mirror";
26
};
27