7 lines
186 B
Nix
7 lines
186 B
Nix
{ config, pkgs, ... }: {
|
|
virtualisation.podman.enable = true;
|
|
virtualisation.oci-containers.backend = "podman";
|
|
environment.systemPackages = with pkgs; [
|
|
podman-compose
|
|
];
|
|
}
|