Don't let docker wait after the network is online

It causes errors with network script and it still has problems pulling images.
I probably have to start it after the NTP service.
This commit is contained in:
Andreas Zweili 2024-01-29 22:34:19 +01:00
parent cd48f48816
commit 10c04c5a47
1 changed files with 0 additions and 1 deletions

View File

@ -10,6 +10,5 @@ in {
};
users.users.${config.az-username}.extraGroups = [ "docker" ];
environment.systemPackages = with pkgs; [ lazydocker ];
systemd.services.docker.after = [ "network-online.target" ];
};
}