Compare commits

..

4 commits

4 changed files with 14 additions and 15 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 "✅ ${{ matrix.server }} deployed $expected_sha"
echo "Deployed $expected_sha"
exit 0
fi
echo "⏳ ${{ matrix.server }}: deployed ${deployed_sha::7}, waiting for ${expected_sha::7}..."
sleep 5
echo "Deployed ${deployed_sha::7}, waiting for ${expected_sha::7}..."
sleep 10
done
notify:
if: always()

1
README.md Normal file
View file

@ -0,0 +1 @@
[![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,4 +36,13 @@ in
readOnly = true;
};
};
config = {
networking = {
useNetworkd = true;
useDHCP = false;
};
services.resolved.enable = true;
};
}

View file

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