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,7 +83,8 @@
client1 = client1 =
{ pkgs, ... }: { pkgs, ... }:
{ {
custom.networking = { custom = {
networking = {
overlay = { overlay = {
address = "10.254.250.3"; address = "10.254.250.3";
role = "client"; role = "client";
@ -93,6 +94,7 @@
cidr = "192.168.0.3/16"; cidr = "192.168.0.3/16";
}; };
}; };
};
environment.systemPackages = [ pkgs.openssh ]; environment.systemPackages = [ pkgs.openssh ];
}; };