blob: 6a9ee7284ba978934000331cf19d03f6898f5c2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
{ config, lib, pkgs, ... }:
{
environment = {
etc = {
"tftp/ipxe.efi".source = "${pkgs.ipxe}/ipxe.efi";
"tftp/undionly.kpxe".source = "${pkgs.ipxe}/undionly.kpxe";
};
systemPackages = with pkgs; [
ipxe
tftp-hpa
wol
];
};
services = {
kea.dhcp4 = {
configFile = config.sops.secrets.kea-dhcp4_conf.path;
enable = true;
};
xinetd = {
enable = true;
services = [{
name = "tftp";
protocol = "udp";
server = "${pkgs.tftp-hpa}/sbin/in.tftpd";
serverArgs = "/etc/tftp";
user = "root";
}];
};
};
systemd.services = {
kea-dhcp4-server = {
restartTriggers = [ config.sops.secrets.kea-dhcp4_conf.sopsFile ];
serviceConfig = {
ExecStart = lib.mkForce ''
${pkgs.kea}/bin/kea-dhcp4 -c ''${CREDENTIALS_DIRECTORY}/kea-dhcp4_conf
'';
LoadCredential = [ "kea-dhcp4_conf:${config.sops.secrets.kea-dhcp4_conf.path}" ];
};
};
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" ];
};
};
}
|