client: automatically install podman-compose if podman is installed

This commit is contained in:
Luke Granger-Brown 2024-01-27 20:59:57 +00:00
parent c4807bde0a
commit f3dd272a82

View file

@ -17,5 +17,9 @@ in
# Enable mDNS resolver/responder by default unless otherwise configured.
connection.mdns=2
'';
environment.systemPackages = with pkgs; lib.mkMerge [
(lib.mkIf config.virtualisation.podman.enable [ podman-compose ])
];
};
}