docker: init

This commit is contained in:
Katherina Walshe-Grey 2025-10-04 16:02:31 +01:00
parent 99215ba9ca
commit 57b9557b02
2 changed files with 13 additions and 0 deletions

11
common/docker.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
virtualisation.docker.daemon.settings = {
userland-proxy = false;
experimental = true;
metrics-addr = "0.0.0.0:9323";
ipv6 = true;
fixed-cidr-v6 = "fd00::/80";
};
}