mob next [ci-skip] [ci skip] [skip ci]

lastFile:routers/white-house/configuration.nix
This commit is contained in:
2025-10-14 13:02:01 +07:00
parent 1066e09b49
commit 6bdc326f98

View File

@@ -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
];
}