From 6bdc326f9898b88c8ff9abe6e31e8d1aa3160f70 Mon Sep 17 00:00:00 2001 From: kurogeek Date: Tue, 14 Oct 2025 13:02:01 +0700 Subject: [PATCH] mob next [ci-skip] [ci skip] [skip ci] lastFile:routers/white-house/configuration.nix --- routers/white-house/configuration.nix | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/routers/white-house/configuration.nix b/routers/white-house/configuration.nix index 43b3c3e..1595e22 100644 --- a/routers/white-house/configuration.nix +++ b/routers/white-house/configuration.nix @@ -3,10 +3,20 @@ config, pkgs, modulesPath, + lib, ... }: let inherit (pkgs.liminix.services) target; + secrets = { + firewallRules = { }; + } + // (import ./secrets.nix); + wirelessConfig = { + country_code = "TH"; + inherit (secrets) wpa_passphrase; + wmm_enabled = 1; + }; svc = config.system.service; in rec { @@ -98,5 +108,11 @@ rec { }; }; - defaultProfile.packages = [ pkgs.hello ]; + environment.systemPackages = with pkgs; [ + tcpdump + socat + iptables + usbutils + busybox + ]; }