Enable tftp server.
This commit is contained in:
parent
7d062b491d
commit
627549d907
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Reference in a new issue