Changed: Podman

This commit is contained in:
2025-03-26 14:58:16 +01:00
parent fbb83f412b
commit 065f4ed0be
2 changed files with 2 additions and 0 deletions

View File

@@ -5,5 +5,7 @@
./git.nix
./media.nix
./xdg.nix
./neovim.nix
./podman.nix
];
}

18
home/programs/docker.nix Normal file
View File

@@ -0,0 +1,18 @@
{ pkgs, ... }: {
virtualisation.docker = {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
daemon.settings = {
data-root = "/docker/containers";
userland-proxy = false;
experimental = true;
metrics-addr = "0.0.0.0:9323";
ipv6 = true;
fixed-cidr-v6 = "fd00::/80";
};
};
}