Switch containers to podman

This commit is contained in:
Michael Thomas 2022-01-19 11:15:35 -05:00
parent 89f16664c5
commit e564497622

View File

@ -1,5 +1,12 @@
{ pkgs, ... }:
{
# Enable Docker
# TODO: podman
virtualisation.docker.enable = true;
# Enable Podman w/ docker compose compatibility
virtualisation.podman = {
enable = true;
dockerCompat = true;
};
environment.systemPackages = with pkgs; [
docker-compose
];
}