aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-11-09 13:02:57 -0800
committerMark Nipper <nipsy@bitgnome.net>2024-11-09 13:02:57 -0800
commit6ec418664d7c33d17904d87c313cd4d76b70c4ed (patch)
tree082a418b0fcccdfbb6fd716cc3a7fc31794a40d3 /hosts/common
parent36d57c0040c6af77d9a2cfca138c9fef518535b1 (diff)
downloadnix-6ec418664d7c33d17904d87c313cd4d76b70c4ed.tar
nix-6ec418664d7c33d17904d87c313cd4d76b70c4ed.tar.gz
nix-6ec418664d7c33d17904d87c313cd4d76b70c4ed.tar.bz2
nix-6ec418664d7c33d17904d87c313cd4d76b70c4ed.tar.lz
nix-6ec418664d7c33d17904d87c313cd4d76b70c4ed.tar.xz
nix-6ec418664d7c33d17904d87c313cd4d76b70c4ed.tar.zst
nix-6ec418664d7c33d17904d87c313cd4d76b70c4ed.zip
Update tftp path
Diffstat (limited to 'hosts/common')
-rw-r--r--hosts/common/optional/services/dhcp.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/hosts/common/optional/services/dhcp.nix b/hosts/common/optional/services/dhcp.nix
index 4f183c5..e1f57dc 100644
--- a/hosts/common/optional/services/dhcp.nix
+++ b/hosts/common/optional/services/dhcp.nix
@@ -18,7 +18,10 @@
enable = true;
};
- tftpd.enable = true;
+ tftpd = {
+ enable = true;
+ path = "/etc/tftp";
+ };
};
systemd.services.kea-dhcp4-server = {