diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-11-09 16:37:49 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-11-09 16:37:49 -0800 |
commit | db162ccfc5fb96d786d4a4ef3a50cf5b38502f4a (patch) | |
tree | 2bb4a8750dfa04046bf5f3179c3d83f381ed4dd0 /hosts/common/optional/services/dhcp.nix | |
parent | 12ea217e905a1caaa31c7ebb8edd57e72efade69 (diff) | |
download | nix-db162ccfc5fb96d786d4a4ef3a50cf5b38502f4a.tar nix-db162ccfc5fb96d786d4a4ef3a50cf5b38502f4a.tar.gz nix-db162ccfc5fb96d786d4a4ef3a50cf5b38502f4a.tar.bz2 nix-db162ccfc5fb96d786d4a4ef3a50cf5b38502f4a.tar.lz nix-db162ccfc5fb96d786d4a4ef3a50cf5b38502f4a.tar.xz nix-db162ccfc5fb96d786d4a4ef3a50cf5b38502f4a.tar.zst nix-db162ccfc5fb96d786d4a4ef3a50cf5b38502f4a.zip |
Add secure option to tftpd
Diffstat (limited to 'hosts/common/optional/services/dhcp.nix')
-rw-r--r-- | hosts/common/optional/services/dhcp.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/common/optional/services/dhcp.nix b/hosts/common/optional/services/dhcp.nix index 034ef67..8585af7 100644 --- a/hosts/common/optional/services/dhcp.nix +++ b/hosts/common/optional/services/dhcp.nix @@ -25,7 +25,7 @@ name = "tftp"; protocol = "udp"; server = "${pkgs.tftp-hpa}/sbin/in.tftpd"; - serverArgs = "/etc/tftp"; + serverArgs = "-s /etc/tftp"; user = "root"; }]; }; |