aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/services
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-11-09 11:39:13 -0800
committerMark Nipper <nipsy@bitgnome.net>2024-11-09 11:39:13 -0800
commitfb57a0ecd1776724557eb406105b2bce00090c93 (patch)
tree3e74b8cd7012190f5f8c6b61c00a6a0a8781f2b0 /hosts/common/optional/services
parent8ec087af30429f7d11e0bad9971193470a2f2f8f (diff)
downloadnix-fb57a0ecd1776724557eb406105b2bce00090c93.tar
nix-fb57a0ecd1776724557eb406105b2bce00090c93.tar.gz
nix-fb57a0ecd1776724557eb406105b2bce00090c93.tar.bz2
nix-fb57a0ecd1776724557eb406105b2bce00090c93.tar.lz
nix-fb57a0ecd1776724557eb406105b2bce00090c93.tar.xz
nix-fb57a0ecd1776724557eb406105b2bce00090c93.tar.zst
nix-fb57a0ecd1776724557eb406105b2bce00090c93.zip
Add tftpd @darkstar
Diffstat (limited to 'hosts/common/optional/services')
-rw-r--r--hosts/common/optional/services/dhcp.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/hosts/common/optional/services/dhcp.nix b/hosts/common/optional/services/dhcp.nix
index 6cfec9c..b5d7819 100644
--- a/hosts/common/optional/services/dhcp.nix
+++ b/hosts/common/optional/services/dhcp.nix
@@ -5,9 +5,13 @@
ipxe
];
- services.kea.dhcp4 = {
- configFile = config.sops.secrets.kea-dhcp4_conf.path;
- enable = true;
+ services = {
+ kea.dhcp4 = {
+ configFile = config.sops.secrets.kea-dhcp4_conf.path;
+ enable = true;
+ };
+
+ tftpd.enable = true;
};
systemd.services.kea-dhcp4-server = {