2023-05-20 17:52:03 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2023-05-21 09:41:32 +02:00
|
|
|
virtualisation.docker = {
|
|
|
|
enable = true;
|
|
|
|
daemon.settings = {
|
|
|
|
# make sure IPv6 is enabled, else there will be long loading times everywhere
|
|
|
|
ipv6 = true;
|
|
|
|
fixed-cidr-v6 = "fd00:dead:beef:c0::/80";
|
|
|
|
experimental = true;
|
|
|
|
ip6tables = true;
|
|
|
|
};
|
|
|
|
};
|
2023-05-20 17:52:03 +02:00
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
docker-compose
|
|
|
|
openssl
|
|
|
|
];
|
2023-05-21 09:41:32 +02:00
|
|
|
|
2023-05-20 17:52:03 +02:00
|
|
|
}
|