Files
infra/nixos/modules/docker.nix
T
2026-05-29 15:24:12 +03:00

18 lines
282 B
Nix

{ pkgs, ... }:
{
virtualisation.docker = {
enable = true;
daemon.settings = {
registry-mirrors = [
"https://mirror.gcr.io"
"https://dockerhub.timeweb.cloud"
];
};
};
environment.systemPackages = with pkgs; [
docker-compose
];
}