From adb843dd8b37d1254d734d050d03af5adba048d6 Mon Sep 17 00:00:00 2001 From: Ryan Lahfa Date: Thu, 5 Sep 2024 14:58:38 +0200 Subject: [PATCH] feat(ap01): add ubus Signed-off-by: Ryan Lahfa --- machines/ap01/_configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/machines/ap01/_configuration.nix b/machines/ap01/_configuration.nix index 036b92e..f8a6cf2 100644 --- a/machines/ap01/_configuration.nix +++ b/machines/ap01/_configuration.nix @@ -94,6 +94,7 @@ rec { "${modulesPath}/bridge" "${modulesPath}/jitter-rng" "${modulesPath}/pki" + "${modulesPath}/ubus" ../../modules/dgn-access-control.nix # TODO: god that's so a fucking hack. (import "${modulesPath}/../devices/zyxel-nwa50ax").module @@ -103,6 +104,7 @@ rec { # Get moar random please services.jitter = svc.jitter-rng.build { }; + services.ubus = svc.ubus.build { }; # SSH keys are handled by the access control module. dgn-access-control.enable = true;