2024-10-11 10:23:21 +00:00
|
|
|
<template>
|
2024-10-15 08:45:44 +00:00
|
|
|
<pre>
|
2024-10-11 10:23:21 +00:00
|
|
|
virtualisation.containers.enable = true;
|
|
|
|
virtualisation.podman = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
# Create a `docker` alias for podman, to use it as a drop-in replacement
|
|
|
|
dockerCompat = true;
|
|
|
|
|
|
|
|
# Required for containers under podman-compose to be able to talk to each other.
|
|
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
services.gitea-actions-runner = {
|
|
|
|
package = pkgs.forgejo-runner;
|
|
|
|
instances.default = {
|
|
|
|
enable = true;
|
|
|
|
name = "dromadaire";
|
|
|
|
url = "https://git.distrilab.fr";
|
|
|
|
# Obtaining the path to the runner token file may differ
|
|
|
|
tokenFile = "/etc/forgejo/runner.token";
|
|
|
|
labels = [
|
|
|
|
# provide a debian base with nodejs for actions
|
|
|
|
"debian-latest:docker://node:20-bookworm"
|
|
|
|
# fake the ubuntu name, because node provides no ubuntu builds
|
|
|
|
"ubuntu-latest:docker://node:20-bookworm"
|
|
|
|
# nixos
|
|
|
|
"nixos:docker://nixos/nix:latest"
|
|
|
|
# provide native execution on the host
|
|
|
|
#"native:host"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2024-10-15 08:45:44 +00:00
|
|
|
</pre>
|
2024-10-11 10:23:21 +00:00
|
|
|
</template>
|
|
|
|
|