Skip to content

Commit

Permalink
netclient: add network-online dependency to get rid of warning (#371276)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Feb 27, 2025
2 parents 873ad91 + 391398a commit 291fe08
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions nixos/modules/services/networking/netclient.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ in
config = lib.mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
systemd.services.netclient = {
wants = [ "network-online.target" ];
wantedBy = [ "multi-user.target" ];
after = [ "network-online.target" ];
description = "Netclient Daemon";
Expand Down

0 comments on commit 291fe08

Please sign in to comment.