add create_pr flag to true
Some checks failed
Lint Nix code / Lint code (push) Failing after 1m3s

This commit is contained in:
shobu 2025-11-11 22:41:56 +01:00
parent 44e14114b3
commit f16fffdd5c
2 changed files with 19 additions and 7 deletions

View File

@ -11,3 +11,5 @@ jobs:
with: with:
name: statix name: statix
- uses: https://github.com/jocelynthode/statix-action@master - uses: https://github.com/jocelynthode/statix-action@master
with:
create_pr: true

View File

@ -1,15 +1,10 @@
{nodes, ...}: { {nodes, pkgs, ...}: {
systemd.sockets.podman.socketConfig.Symlinks = [ systemd.sockets.podman.socketConfig.Symlinks = [
"/run/docker.sock" "/run/docker.sock"
]; ];
virtualisation = { virtualisation = {
containers = { containers = {
enable = true; enable = true;
# storage.settings = {
# storage = {
# driver = "btrfs";
# };
# };
}; };
podman = { podman = {
enable = true; enable = true;
@ -20,16 +15,31 @@
}; };
}; };
virtualisation.oci-containers.containers = { virtualisation.oci-containers.containers = let
runner_config = pkgs.writeTextFile {
name = "config.yml";
text = ''
container:
network: "bridge"
'';
};
in {
gitea-runner = { gitea-runner = {
image = "gitea/act_runner@sha256:8477d5b61b655caad4449888bae39f1f34bebd27db56cb15a62dccb3dcf3a944"; image = "gitea/act_runner@sha256:8477d5b61b655caad4449888bae39f1f34bebd27db56cb15a62dccb3dcf3a944";
autoStart = true; autoStart = true;
# capabilities = {
# NET_RAW = true;
# };
environment = { environment = {
GITEA_INSTANCE_URL = nodes.sin.config.services.gitea.settings.server.ROOT_URL; GITEA_INSTANCE_URL = nodes.sin.config.services.gitea.settings.server.ROOT_URL;
GITEA_RUNNER_REGISTRATION_TOKEN = "uEDPBW6Z9oItAKRtloVwis0LkPbD4OmV2w5esOhW"; GITEA_RUNNER_REGISTRATION_TOKEN = "uEDPBW6Z9oItAKRtloVwis0LkPbD4OmV2w5esOhW";
CONFIG_FILE = "/config.yml";
}; };
volumes = [ volumes = [
"/var/run/docker.sock:/var/run/docker.sock" "/var/run/docker.sock:/var/run/docker.sock"
"${runner_config}:/config.yml:ro"
]; ];
}; };
}; };