Compare commits

..

4 commits

Author SHA1 Message Date
0572e44086 TMP
Some checks failed
CI / build (push) Failing after 2m50s
2024-12-10 15:47:28 +02:00
bcf390e8a7 Remove CVE-2024-6387 ssh workaround
Some checks failed
CI / build (push) Has been cancelled
2024-12-10 14:49:54 +02:00
75ffd54e7d Update inputs 2024-12-10 14:49:54 +02:00
5507106e41 Refactore backplane-net to module with hosts 2024-12-10 14:49:54 +02:00
3 changed files with 15 additions and 2 deletions

View file

@ -10,6 +10,14 @@ jobs:
build: build:
runs-on: nix runs-on: nix
steps: steps:
- name: Debug
run: |
cat /etc/hosts
nix run nixpkgs#curl -- -v https://heise.de
nix run nixpkgs#curl -- -v https://fh2.ch
nix run nixpkgs#curl -- -v https://git.qo.is
git clone https://git.qo.is/qo.is/infrastructure-private.git /tmp/private
- name: Initialize CI - name: Initialize CI
uses: https://git.qo.is/qo.is/actions-nix-init@main uses: https://git.qo.is/qo.is/actions-nix-init@main
with: with:
@ -18,6 +26,10 @@ jobs:
- name: Add submodules to nix store to circumvent another nix bug - name: Add submodules to nix store to circumvent another nix bug
run: | run: |
cat /etc/hosts
curl -v https://heise.de
curl -v https://fh2.ch
curl -v https://git.qo.is
git clone https://git.qo.is/qo.is/infrastructure-private.git /tmp/private git clone https://git.qo.is/qo.is/infrastructure-private.git /tmp/private
cd /tmp/private cd /tmp/private
nix flake prefetch nix flake prefetch

View file

@ -11,8 +11,7 @@
../../defaults/meta ../../defaults/meta
]; ];
boot.initrd.luks.devices."systems".device = boot.initrd.luks.devices."systems".device = "/dev/disk/by-uuid/5718bd19-cb7a-4728-9ec4-6b2be48215fc";
"/dev/disk/by-uuid/5718bd19-cb7a-4728-9ec4-6b2be48215fc";
fileSystems."/" = { fileSystems."/" = {
device = "/dev/mapper/vg_systems-hv_stompert"; device = "/dev/mapper/vg_systems-hv_stompert";

View file

@ -110,6 +110,8 @@ with lib;
rpc: files rpc: files
NSSWITCH NSSWITCH
cp -f ${config.environment.etc.hosts.source} hosts
# list the content as it will be imported into the container # list the content as it will be imported into the container
tar -cv . | tar -tvf - tar -cv . | tar -tvf -
tar -cv . | podman import - gitea-runner-nix tar -cv . | podman import - gitea-runner-nix