Files
nix/hosts/common/configs/system/podman/default.nix
2025-02-16 17:23:12 +00:00

15 lines
273 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 ];
};
}