From 68138c0a31c886e4979bba4b14008fe5b7640f00 Mon Sep 17 00:00:00 2001 From: quitte Date: Sun, 19 May 2024 11:34:46 +0200 Subject: [PATCH] podman: add dive and podman-tui --- modules/core/podman.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/core/podman.nix b/modules/core/podman.nix index ecf0443..ad47b5b 100644 --- a/modules/core/podman.nix +++ b/modules/core/podman.nix @@ -14,4 +14,13 @@ }; }; virtualisation.oci-containers.backend = "podman"; + + + # Useful otherdevelopment tools + environment.systemPackages = with pkgs; [ + dive # look into docker image layers + podman-tui # status of containers in the terminal + #docker-compose # start group of containers for dev + #podman-compose # start group of containers for dev + ]; } \ No newline at end of file