Files
nix/hosts/common/configs/system/podman/default.nix
2025-02-15 00:32:16 +00:00

18 lines
294 B
Nix

{ pkgs, ... }:
{
virtualisation = {
containers.enable = true;
oci-containers.backend = "podman";
podman.enable = true;
};
environment = {
persistence."/persist"."/var/lib/containers" = { };
systemPackages = with pkgs; [
podman-compose
dive
];
};
}