forked from CCCHH/nix-infra
14 lines
331 B
Nix
14 lines
331 B
Nix
# Sources for this configuration:
|
|
# - https://woodpecker-ci.org/docs/administration/deployment/nixos
|
|
# - https://woodpecker-ci.org/docs/administration/backends/docker
|
|
# - https://nixos.wiki/wiki/Podman
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
}
|