WIP: example of using the Archer AX23 as extender #7

Draft
raboof wants to merge 3 commits from raboof/liminix:archer-wired-extender into main
2 changed files with 7 additions and 2 deletions
Showing only changes of commit d20b79e06a - Show all commits

View File

@ -47,6 +47,7 @@
../../modules/arch/mipsel.nix
../../modules/outputs/tftpboot.nix
../../modules/outputs/tplink-safeloader.nix
../../modules/outputs/jffs2.nix
];
config = {
kernel = {

View File

@ -24,6 +24,7 @@ in rec {
../modules/ssh
../modules/bridge
../modules/hostapd
../modules/outputs/kexecboot.nix
];
hostname = "yardbird";
@ -149,7 +150,10 @@ in rec {
users.root = secrets.root;
defaultProfile.packages = with pkgs; [
figlet
#tcpdump
tcpdump
# for arp
nettools
# for kexec booting
gnutar
];
}