podman: add krunkit to wrapped closure

This is an alternative runtime that is GPU-aware (used by ramalama).
This commit is contained in:
Ihar Hrachyshka
2025-11-25 21:22:05 -05:00
parent db0b4b738b
commit 012df6300f
+3 -3
View File
@@ -21,6 +21,7 @@
extraPackages ? [ ],
crun,
runc,
krunkit,
conmon,
extraRuntimes ? lib.optionals stdenv.hostPlatform.isLinux [ runc ], # e.g.: runc, gvisor, youki
fuse-overlayfs,
@@ -166,9 +167,8 @@ buildGoModule (finalAttrs: {
iproute2
nftables
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
vfkit
]
++ lib.optional (lib.meta.availableOn stdenv.hostPlatform vfkit) vfkit
++ lib.optional (lib.meta.availableOn stdenv.hostPlatform krunkit) krunkit
++ extraPackages
);