Changed: Podman
This commit is contained in:
@@ -5,5 +5,7 @@
|
||||
./git.nix
|
||||
./media.nix
|
||||
./xdg.nix
|
||||
./neovim.nix
|
||||
./podman.nix
|
||||
];
|
||||
}
|
||||
|
18
home/programs/docker.nix
Normal file
18
home/programs/docker.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user