aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/services/kea.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/optional/services/kea.nix')
-rw-r--r--hosts/common/optional/services/kea.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/hosts/common/optional/services/kea.nix b/hosts/common/optional/services/kea.nix
deleted file mode 100644
index 6cfec9c..0000000
--- a/hosts/common/optional/services/kea.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ config, lib, pkgs, ... }:
-{
-
- environment.systemPackages = with pkgs; [
- ipxe
- ];
-
- services.kea.dhcp4 = {
- configFile = config.sops.secrets.kea-dhcp4_conf.path;
- enable = true;
- };
-
- systemd.services.kea-dhcp4-server = {
- 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}" ];
- };
- };
-}