nixos-module/container/netboot: switch from xinetd to atftpd

This commit is contained in:
Astro 2021-06-18 20:45:23 +02:00
parent 250089b22f
commit 0e07293692
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ let
''; '';
in in
{ {
services.tftpd = { services.atftpd = {
enable = true; enable = true;
path = tftpRoot; root = tftpRoot;
}; };
} }