debugging dns settings on ci
This commit is contained in:
parent
a7c3868a4a
commit
93dfe57229
2 changed files with 7 additions and 1 deletions
|
@ -7,6 +7,9 @@ jobs:
|
|||
build:
|
||||
runs-on: flakes-action
|
||||
steps:
|
||||
- name: dns settings
|
||||
run: |
|
||||
cat /etc/resolv.conf
|
||||
- uses: actions/checkout@v3
|
||||
name: Checkout
|
||||
- name: Metadata
|
||||
|
|
|
@ -11,7 +11,10 @@ in
|
|||
virtualisation.podman = {
|
||||
enable = true;
|
||||
autoPrune.enable = true;
|
||||
defaultNetwork.settings = { dns_enabled = true; };
|
||||
defaultNetwork.settings = {
|
||||
dns = ["9.9.9.9"];
|
||||
dns_enabled = false;
|
||||
};
|
||||
};
|
||||
disabledModules = [ "services/continuous-integration/gitea-actions-runner.nix" ];
|
||||
imports = [ "${unstable}/nixos/modules/services/continuous-integration/gitea-actions-runner.nix" ];
|
||||
|
|
Loading…
Reference in a new issue