14 lines
272 B
Nix
14 lines
272 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# 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
|
|
];
|
|
} |