forked from Deuxfleurs/nixcfg
Correctly inject dns servers in docker
This commit is contained in:
parent
b5a0f8bd82
commit
38a544d9c4
1 changed files with 6 additions and 1 deletions
|
@ -64,7 +64,6 @@ SystemMaxUse=1G
|
||||||
links2
|
links2
|
||||||
git
|
git
|
||||||
rclone
|
rclone
|
||||||
docker
|
|
||||||
docker-compose
|
docker-compose
|
||||||
wireguard-tools
|
wireguard-tools
|
||||||
#qemu
|
#qemu
|
||||||
|
@ -81,6 +80,12 @@ SystemMaxUse=1G
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
services.openssh.passwordAuthentication = false;
|
services.openssh.passwordAuthentication = false;
|
||||||
|
|
||||||
|
virtualisation.docker = {
|
||||||
|
enable = true;
|
||||||
|
extraOptions = "--config-file=${pkgs.writeText "daemon.json" (builtins.toJSON {
|
||||||
|
dns = [ "172.17.0.1" "8.8.8.8" "8.8.4.4" ];
|
||||||
|
})}";
|
||||||
|
};
|
||||||
|
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
# settings for stateful data, like file locations and database versions
|
# settings for stateful data, like file locations and database versions
|
||||||
|
|
Loading…
Reference in a new issue