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

View file

@ -3,7 +3,9 @@
./base-graphical
./base-server
./users
./boot.nix
./docker.nix
./gpg.nix
./home-manager.nix
./misc.nix

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";
};
}