nixfleet/modules/docker/default.nix
Andrea Ciceri 9620ca8ca3
All checks were successful
/ test (push) Successful in 18m47s
Things
2024-06-09 09:09:15 +02:00

13 lines
241 B
Nix

{
pkgs,
config,
...
}: {
virtualisation.podman.enable = true;
# virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [
docker-compose
podman-compose
];
ccr.extraGroups = ["docker" "podman"];
}