1

System/Nixinator: Disable rootless docker

This commit is contained in:
2026-01-18 01:19:04 +01:00
parent eaa36cfce2
commit 5e422d05c9
3 changed files with 9 additions and 7 deletions

View File

@ -18,6 +18,10 @@ in {
networking.firewall.trustedInterfaces = ["docker0" "podman0"];
# Needed for default bridge network to automatically work
# boot.kernel.sysctl."net.ipv4.ip_forward" = 1;
# boot.kernel.sysctl."net.ipv6.ip_forward" = 1;
virtualisation = {
docker = {
enable = !docker.podman;
@ -25,6 +29,7 @@ in {
extraPackages = with pkgs; [docker-compose];
# TODO: Rootless docker has no internet?
rootless = {
enable = docker.docker.rootless;
setSocketVariable = true;