Compare commits

..

2 Commits

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
];
}