2024-07-16 20:32:29 +00:00
|
|
|
# This is an example that uses the "gateway" profile to create a
|
|
|
|
# "typical home wireless router" configuration suitable for a Gl.inet
|
|
|
|
# gl-ar750 router. It should be fairly simple to edit it for other
|
|
|
|
# devices: mostly you will need to attend to the number of wlan and lan
|
|
|
|
# interfaces
|
2023-02-25 23:12:55 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
modulesPath,
|
|
|
|
...
|
|
|
|
}:
|
2023-02-25 23:12:55 +00:00
|
|
|
let
|
2024-02-11 09:10:03 +00:00
|
|
|
secrets = {
|
|
|
|
domainName = "fake.liminix.org";
|
2024-06-30 15:58:29 +00:00
|
|
|
firewallRules = { };
|
2024-02-11 09:10:03 +00:00
|
|
|
} // (import ./rotuer-secrets.nix);
|
2023-07-20 10:28:45 +00:00
|
|
|
svc = config.system.service;
|
2024-06-30 15:58:29 +00:00
|
|
|
wirelessConfig = {
|
2023-07-22 22:37:01 +00:00
|
|
|
country_code = "GB";
|
|
|
|
inherit (secrets) wpa_passphrase;
|
|
|
|
wmm_enabled = 1;
|
|
|
|
};
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
rec {
|
2023-02-25 23:12:55 +00:00
|
|
|
boot = {
|
|
|
|
tftp = {
|
2023-04-23 22:29:53 +00:00
|
|
|
freeSpaceBytes = 3 * 1024 * 1024;
|
2023-02-25 23:12:55 +00:00
|
|
|
serverip = "10.0.0.1";
|
|
|
|
ipaddr = "10.0.0.8";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
imports = [
|
2024-03-18 00:05:43 +00:00
|
|
|
"${modulesPath}/profiles/gateway.nix"
|
2023-02-25 23:12:55 +00:00
|
|
|
];
|
2023-05-20 21:34:57 +00:00
|
|
|
hostname = "rotuer";
|
2023-02-25 23:12:55 +00:00
|
|
|
|
2024-03-18 00:05:43 +00:00
|
|
|
profile.gateway = {
|
|
|
|
lan = {
|
2025-02-10 21:55:08 +00:00
|
|
|
interfaces = with config.hardware.networkInterfaces; [
|
|
|
|
# EDIT: these are the interfaces exposed by the gl.inet gl-ar750:
|
|
|
|
# if your device has more or differently named lan interfaces,
|
|
|
|
# specify them here
|
|
|
|
wlan
|
|
|
|
wlan5
|
|
|
|
lan
|
|
|
|
];
|
2024-03-18 00:05:43 +00:00
|
|
|
inherit (secrets.lan) prefix;
|
|
|
|
address = {
|
2025-02-10 21:55:08 +00:00
|
|
|
family = "inet";
|
|
|
|
address = "${secrets.lan.prefix}.1";
|
|
|
|
prefixLength = 24;
|
2024-03-18 00:05:43 +00:00
|
|
|
};
|
|
|
|
dhcp = {
|
|
|
|
start = 10;
|
|
|
|
end = 240;
|
2025-02-10 21:55:08 +00:00
|
|
|
hosts =
|
|
|
|
{ }
|
|
|
|
// lib.optionalAttrs (builtins.pathExists ./static-leases.nix) (import ./static-leases.nix);
|
2024-03-18 00:05:43 +00:00
|
|
|
localDomain = "lan";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
wan = {
|
2024-07-16 21:10:09 +00:00
|
|
|
# wan interface depends on your upstream - could be dhcp, static
|
|
|
|
# ethernet, a pppoe, ppp over serial, a complicated bonded
|
|
|
|
# failover ... who knows what else?
|
|
|
|
interface = svc.pppoe.build {
|
|
|
|
interface = config.hardware.networkInterfaces.wan;
|
|
|
|
username = secrets.l2tp.name;
|
|
|
|
password = secrets.l2tp.password;
|
|
|
|
};
|
|
|
|
# once the wan has ipv4 connnectivity, should we run dhcp6
|
|
|
|
# client to potentially get an address range ("prefix
|
|
|
|
# delegation")
|
2024-03-18 00:05:43 +00:00
|
|
|
dhcp6.enable = true;
|
|
|
|
};
|
|
|
|
firewall = {
|
|
|
|
enable = true;
|
2024-03-21 12:00:34 +00:00
|
|
|
rules = secrets.firewallRules;
|
2024-03-18 00:05:43 +00:00
|
|
|
};
|
|
|
|
wireless.networks = {
|
2024-07-16 20:32:29 +00:00
|
|
|
# EDIT: if you have more or fewer wireless radios, here is where
|
|
|
|
# you need to say so. hostapd tuning is hardware-specific and
|
|
|
|
# left as an exercise for the reader :-).
|
|
|
|
|
2024-03-18 00:05:43 +00:00
|
|
|
"${secrets.ssid}" = {
|
|
|
|
interface = config.hardware.networkInterfaces.wlan;
|
2024-06-30 15:58:29 +00:00
|
|
|
hw_mode = "g";
|
2024-03-18 00:05:43 +00:00
|
|
|
channel = "2";
|
|
|
|
ieee80211n = 1;
|
|
|
|
} // wirelessConfig;
|
|
|
|
"${secrets.ssid}5" = rec {
|
|
|
|
interface = config.hardware.networkInterfaces.wlan5;
|
2024-06-30 15:58:29 +00:00
|
|
|
hw_mode = "a";
|
2024-03-18 00:05:43 +00:00
|
|
|
channel = 36;
|
|
|
|
ht_capab = "[HT40+]";
|
|
|
|
vht_oper_chwidth = 1;
|
|
|
|
vht_oper_centr_freq_seg0_idx = channel + 6;
|
|
|
|
ieee80211n = 1;
|
|
|
|
ieee80211ac = 1;
|
|
|
|
} // wirelessConfig;
|
|
|
|
};
|
2023-08-27 22:45:27 +00:00
|
|
|
};
|
2023-03-01 22:24:58 +00:00
|
|
|
|
2023-08-05 13:16:54 +00:00
|
|
|
services.ntp = svc.ntp.build {
|
2025-02-10 21:55:08 +00:00
|
|
|
pools = {
|
|
|
|
"pool.ntp.org" = [ "iburst" ];
|
|
|
|
};
|
|
|
|
makestep = {
|
|
|
|
threshold = 1.0;
|
|
|
|
limit = 3;
|
|
|
|
};
|
2023-07-22 22:22:45 +00:00
|
|
|
};
|
2023-04-23 17:22:39 +00:00
|
|
|
|
2023-08-10 21:53:21 +00:00
|
|
|
services.sshd = svc.ssh.build { };
|
2023-03-04 00:39:54 +00:00
|
|
|
|
2023-05-20 21:48:30 +00:00
|
|
|
users.root = secrets.root;
|
2023-03-04 00:39:54 +00:00
|
|
|
|
2023-06-20 19:13:59 +00:00
|
|
|
defaultProfile.packages = with pkgs; [
|
|
|
|
min-collect-garbage
|
2024-02-11 23:30:46 +00:00
|
|
|
nftables
|
|
|
|
strace
|
|
|
|
tcpdump
|
2024-02-16 18:30:24 +00:00
|
|
|
s6
|
2023-06-20 19:13:59 +00:00
|
|
|
];
|
2023-12-13 21:54:15 +00:00
|
|
|
|
2024-02-16 18:30:24 +00:00
|
|
|
programs.busybox = {
|
|
|
|
applets = [
|
2025-02-10 21:55:08 +00:00
|
|
|
"fdisk"
|
|
|
|
"sfdisk"
|
2024-02-16 18:30:24 +00:00
|
|
|
];
|
|
|
|
options = {
|
|
|
|
FEATURE_FANCY_TAIL = "y";
|
|
|
|
};
|
|
|
|
};
|
2023-02-25 23:12:55 +00:00
|
|
|
}
|