fixup! Use specific git forgejo CI
All checks were successful
CI / build (push) Successful in 13m56s

This commit is contained in:
Fabian Hauser 2024-10-03 14:29:08 +03:00
parent 6bbd0f0157
commit ec980bd86e
2 changed files with 11 additions and 7 deletions

View file

@ -8,6 +8,7 @@ env:
jobs:
build:
runs-on: docker
container: nixpkgs/nix-flakes:nixos-24.05
steps:
- name: Initialize CI

View file

@ -39,6 +39,7 @@ with lib;
dockerCompat = true;
dockerSocket.enable = true;
autoPrune.enable = true;
defaultNetwork.settings.dns_enabled = true;
};
services.gitea-actions-runner = {
@ -59,6 +60,8 @@ with lib;
capacity = 30;
};
cache.enable = true; # TODO: This should probably be a central cache server?
# the default network that also respects our dns server settings
container.network = "host";
};
};
};
@ -139,13 +142,13 @@ with lib;
storage.runroot = "/run/containers/storage";
};
virtualisation.containers.containersConf.settings = {
# podman seems to not work with systemd-resolved
containers.dns_servers = [
"8.8.8.8"
"8.8.4.4"
];
};
#virtualisation.containers.containersConf.settings = {
# # podman seems to not work with systemd-resolved
# containers.dns_servers = [
# "8.8.8.8"
# "8.8.4.4"
# ];
#};
}
{
systemd.services =