nixos/hosts/architect/docker.nix

11 lines
220 B
Nix
Raw Normal View History

2022-04-05 13:07:35 +01:00
{
2022-11-11 18:17:25 +00:00
virtualisation.docker = {
enable = true;
extraOptions = ''
--dns 127.0.0.1 --dns 10.0.0.250 --data-root /docker
'';
enableOnBoot = false;
};
2022-04-05 13:07:35 +01:00
users.users.giulio.extraGroups = [ "docker" ];
}