nixos/hosts/architect/docker.nix
2022-11-11 19:17:25 +01:00

11 lines
220 B
Nix

{
virtualisation.docker = {
enable = true;
extraOptions = ''
--dns 127.0.0.1 --dns 10.0.0.250 --data-root /docker
'';
enableOnBoot = false;
};
users.users.giulio.extraGroups = [ "docker" ];
}