feat(capytal,forgejo): set up forgejo actions runner

This commit is contained in:
Guz
2025-09-25 14:53:50 -03:00
parent 8c63ed19ae
commit eda2dd1989
5 changed files with 40 additions and 9 deletions

View File

@@ -4,5 +4,6 @@
./cloudflare.nix
./garage.nix
./postgresql.nix
./virtualisation.nix
];
}

13
common/virtualisation.nix Normal file
View File

@@ -0,0 +1,13 @@
{...}: {
virtualisation = {
oci-containers = {
backend = "podman";
};
podman = {
enable = true;
dockerCompat = true;
dockerSocket.enable = true;
};
docker.enable = false;
};
}