fix(general): run update-root-nix-channels after network.target

This commit is contained in:
Infinidoge 2022-06-12 22:25:43 -04:00
parent 0c10446d5d
commit 7411618aa1

View file

@ -27,6 +27,7 @@
systemd.services.update-root-nix-channels = {
description = "Runs nix-channel --update on startup";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig.Type = "oneshot";
script = "${pkgs.nix}/bin/nix-channel --update";
};