nixos-configuration/modules/podman.nix
2024-06-26 20:26:13 +02:00

11 lines
196 B
Nix

{ pkgs, ... }:
{
virtualisation.podman = {
enable = true;
dockerCompat = true;
dockerSocket.enable = true;
};
environment.systemPackages = with pkgs; [
podman-compose
];
}