Enable tftp server.

This commit is contained in:
Joseph Hanson 2024-04-29 21:42:18 -05:00
parent 7d062b491d
commit 627549d907
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -55,11 +55,17 @@
wget wget
]; ];
# Bind DNS server for externaldns on k8s to push zone updates
services.bind = { services.bind = {
enable = true; enable = true;
extraConfig = import ./config/bind.nix {inherit config;}; extraConfig = import ./config/bind.nix {inherit config;};
}; };
# TFTP Server for pushing the files for PXE booting
services.tftpd = {
enable = true;
};
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are
# started in user sessions. # started in user sessions.
programs.mtr.enable = true; programs.mtr.enable = true;