From 706b8043c4de1e2f5b57d713603987e6c0f1bc6e Mon Sep 17 00:00:00 2001 From: derped Date: Sat, 16 Nov 2024 11:00:20 +0100 Subject: [PATCH] Add img and skopeo when enabling podman. --- services/podman.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/podman.nix b/services/podman.nix index 4373bed..ee48f29 100644 --- a/services/podman.nix +++ b/services/podman.nix @@ -17,6 +17,6 @@ in }; }; environment.systemPackages = - (with pkgs; [podman-compose cntr]) + (with pkgs; [podman-compose cntr img skopeo]) ++ (optional withDocker pkgs.docker-compose); }