nix-infra/config/hosts/forgejo-actions-runner/docker.nix

14 lines
219 B
Nix
Raw Normal View History

# Sources for this configuration:
# - https://nixos.wiki/wiki/Docker
{ config, pkgs, ... }:
{
virtualisation.docker = {
enable = true;
autoPrune = {
enable = true;
dates = "weekly";
};
};
}