16 lines
330 B
Nix
16 lines
330 B
Nix
{pkgs, ...}: {
|
|
virtualisation.containers.enable = true;
|
|
|
|
# Enable Podman w/ docker compose compatibility
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerSocket.enable = true;
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
docker-client
|
|
docker-compose
|
|
];
|
|
}
|