Compare commits

..

No commits in common. "a56adf1ca909d69f5b5f592b9899c5db2020671b" and "db0c413e809e6af9002e333c7a209aa8de3172ea" have entirely different histories.

2 changed files with 10 additions and 9 deletions

View file

@ -15,7 +15,6 @@ jobs:
name: sebastian-stork name: sebastian-stork
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- run: nix flake check --print-build-logs - run: nix flake check --print-build-logs
- run: nix build .#checks.x86_64-linux.infrastructure-test --print-build-logs
deploy: deploy:
needs: check needs: check
runs-on: ubuntu-latest runs-on: ubuntu-latest

View file

@ -83,14 +83,16 @@
client1 = client1 =
{ pkgs, ... }: { pkgs, ... }:
{ {
custom.networking = { custom = {
overlay = { networking = {
address = "10.254.250.3"; overlay = {
role = "client"; address = "10.254.250.3";
}; role = "client";
underlay = { };
interface = "eth1"; underlay = {
cidr = "192.168.0.3/16"; interface = "eth1";
cidr = "192.168.0.3/16";
};
}; };
}; };