18 lines
294 B
Nix
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
|
|
];
|
|
};
|
|
}
|