Compare commits

..

No commits in common. "33b2bed5a92148ffa6d11f51ab312d7668e6d421" and "7c9fdb6719515202071abe32dff7adfdccde498c" have entirely different histories.

4 changed files with 15 additions and 14 deletions

View file

@ -130,12 +130,12 @@ jobs:
deployed_sha=$(git ls-remote "$repo_url" "$branch" | cut -f1)
if [[ "$deployed_sha" == "$expected_sha" ]]; then
echo "Deployed $expected_sha"
echo "✅ ${{ matrix.server }} deployed $expected_sha"
exit 0
fi
echo "Deployed ${deployed_sha::7}, waiting for ${expected_sha::7}..."
sleep 10
echo "⏳ ${{ matrix.server }}: deployed ${deployed_sha::7}, waiting for ${expected_sha::7}..."
sleep 5
done
notify:
if: always()

View file

@ -1 +0,0 @@
[![CI](https://github.com/SebastianStork/nixos-config/actions/workflows/ci.yml/badge.svg)](https://github.com/SebastianStork/nixos-config/actions/workflows/ci.yml)

View file

@ -36,13 +36,4 @@ in
readOnly = true;
};
};
config = {
networking = {
useNetworkd = true;
useDHCP = false;
};
services.resolved.enable = true;
};
}

View file

@ -40,6 +40,11 @@ in
config = lib.mkMerge [
{
networking = {
useNetworkd = true;
useDHCP = false;
};
systemd.network = {
enable = true;
networks."10-${cfg.interface}" = {
@ -54,6 +59,12 @@ in
};
};
};
services.resolved = {
enable = true;
dnssec = "allow-downgrade";
dnsovertls = "opportunistic";
};
}
(lib.mkIf cfg.wireless.enable {