diff --git a/hosts/common/configs/system/docker/default.nix b/hosts/common/configs/system/docker/default.nix index e0166d1..acaede0 100644 --- a/hosts/common/configs/system/docker/default.nix +++ b/hosts/common/configs/system/docker/default.nix @@ -19,10 +19,7 @@ environment = { persistence."/persist"."/var/lib/docker" = { }; - systemPackages = with pkgs; [ - docker-compose - dive - ]; + systemPackages = with pkgs; [ docker-compose ]; }; systemd = { diff --git a/hosts/common/configs/system/podman/default.nix b/hosts/common/configs/system/podman/default.nix index 3a34ec1..dfe8e1b 100644 --- a/hosts/common/configs/system/podman/default.nix +++ b/hosts/common/configs/system/podman/default.nix @@ -9,9 +9,6 @@ environment = { persistence."/persist"."/var/lib/containers" = { }; - systemPackages = with pkgs; [ - podman-compose - dive - ]; + systemPackages = with pkgs; [ podman-compose ]; }; }