June
85c059c75c
Configure it to host a forgejo-actions-runner capable of handling CI workloads running on Docker.
14 lines
219 B
Nix
14 lines
219 B
Nix
# Sources for this configuration:
|
|
# - https://nixos.wiki/wiki/Docker
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
virtualisation.docker = {
|
|
enable = true;
|
|
autoPrune = {
|
|
enable = true;
|
|
dates = "weekly";
|
|
};
|
|
};
|
|
}
|