docker: init
This commit is contained in:
parent
99215ba9ca
commit
57b9557b02
2 changed files with 13 additions and 0 deletions
|
@ -3,7 +3,9 @@
|
||||||
./base-graphical
|
./base-graphical
|
||||||
./base-server
|
./base-server
|
||||||
./users
|
./users
|
||||||
|
|
||||||
./boot.nix
|
./boot.nix
|
||||||
|
./docker.nix
|
||||||
./gpg.nix
|
./gpg.nix
|
||||||
./home-manager.nix
|
./home-manager.nix
|
||||||
./misc.nix
|
./misc.nix
|
||||||
|
|
11
common/docker.nix
Normal file
11
common/docker.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue