diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-12-31 11:15:38 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-12-31 11:15:38 -0800 |
commit | 161e1e00426741ed72daf4ce3a4bd1a7bab4bc82 (patch) | |
tree | 813150e6f651bc181c8a262eb13ed985122ac27f /hosts/common/optional/services | |
parent | 9282caadd34bf3bd07986ff6cc6e9e6e59438851 (diff) | |
download | nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.tar nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.tar.gz nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.tar.bz2 nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.tar.lz nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.tar.xz nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.tar.zst nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.zip |
Add tfp-hpa from PR 369712
Diffstat (limited to 'hosts/common/optional/services')
-rw-r--r-- | hosts/common/optional/services/dhcp.nix | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/hosts/common/optional/services/dhcp.nix b/hosts/common/optional/services/dhcp.nix index cdd17be..700d4ce 100644 --- a/hosts/common/optional/services/dhcp.nix +++ b/hosts/common/optional/services/dhcp.nix @@ -3,13 +3,13 @@ environment = { etc = { - #"tftp/ipxe.efi".source = "${pkgs.ipxe}/ipxe.efi"; - #"tftp/undionly.kpxe".source = "${pkgs.ipxe}/undionly.kpxe"; + "tftp/ipxe.efi".source = "${pkgs.ipxe}/ipxe.efi"; + "tftp/undionly.kpxe".source = "${pkgs.ipxe}/undionly.kpxe"; }; systemPackages = with pkgs; [ ipxe - #tftp-hpa + pr369712.tftp-hpa master.wol ]; }; @@ -114,20 +114,20 @@ }; systemd.services = { - #tftpd = { - # after = [ "nftables.service" ]; - # description = "TFTP server"; - # serviceConfig = { - # User = "root"; - # Group = "root"; - # Restart = "always"; - # RestartSec = 5; - # Type = "exec"; - # ExecStart = "${pkgs.tftp-hpa}/bin/in.tftpd -l -a 192.168.1.1:69 -P /run/tftpd.pid /etc/tftp"; - # TimeoutStopSec = 20; - # PIDFile = "/run/tftpd.pid"; - # }; - # wantedBy = [ "multi-user.target" ]; - #}; + tftpd = { + after = [ "nftables.service" ]; + description = "TFTP server"; + serviceConfig = { + User = "root"; + Group = "root"; + Restart = "always"; + RestartSec = 5; + Type = "exec"; + ExecStart = "${pkgs.pr369712.tftp-hpa}/bin/in.tftpd -l -a 192.168.1.1:69 -P /run/tftpd.pid /etc/tftp"; + TimeoutStopSec = 20; + PIDFile = "/run/tftpd.pid"; + }; + wantedBy = [ "multi-user.target" ]; + }; }; } |