diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-11-09 19:48:15 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-11-09 19:48:15 -0800 |
commit | 227d084d2beb2273a22066944f77406fa14538c7 (patch) | |
tree | 2336cbeac335a1173d122c0fc4936bbdd86e88b1 /hosts/common/optional | |
parent | bc25565ebf85431c1def5ee88ca0922734d8fd9b (diff) | |
download | nix-227d084d2beb2273a22066944f77406fa14538c7.tar nix-227d084d2beb2273a22066944f77406fa14538c7.tar.gz nix-227d084d2beb2273a22066944f77406fa14538c7.tar.bz2 nix-227d084d2beb2273a22066944f77406fa14538c7.tar.lz nix-227d084d2beb2273a22066944f77406fa14538c7.tar.xz nix-227d084d2beb2273a22066944f77406fa14538c7.tar.zst nix-227d084d2beb2273a22066944f77406fa14538c7.zip |
Fix typo
Diffstat (limited to 'hosts/common/optional')
-rw-r--r-- | hosts/common/optional/services/dhcp.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hosts/common/optional/services/dhcp.nix b/hosts/common/optional/services/dhcp.nix index 728805d..58d8565 100644 --- a/hosts/common/optional/services/dhcp.nix +++ b/hosts/common/optional/services/dhcp.nix @@ -42,7 +42,7 @@ }; tftpd = { - after = [ "network.target" ]; + after = [ "nftables.service" ]; description = "TFTP server"; serviceConfig = { User = "root"; @@ -55,7 +55,6 @@ PIDFile = "/run/tftpd.pid"; }; wantedBy = [ "multi-user.target" ]; - after = [ "nftables.service" ]; }; }; } |