We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18ee297 commit 4af3f8eCopy full SHA for 4af3f8e
1 file changed
modules/podman.nix
@@ -15,6 +15,10 @@
15
};
16
registries.search = [ "docker.io" ];
17
18
- virtualisation.podman.enable = true;
+ virtualisation.podman = {
19
+ enable = true;
20
+ # Use the host's /usr/bin for setuid binaries like newuidmap/newgidmap
21
+ package = pkgs.podman.override { extraPackages = [ "/usr" ]; };
22
+ };
23
environment.systemPackages = with pkgs; [ podman-compose ];
24
}
0 commit comments