nix-da/options/system/networking/wifi.nix

27 lines
965 B
Nix

{ lib, config, ... }:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.modules.system.networking.wifi;
in
{
options.modules.system.networking.wifi = {
enable = mkEnableOption "activate wifi capabilities";
};
config = mkIf cfg.enable {
networking.networkmanager.enable = true;
networking.firewall = mkIf config.modules.system.roles.desktop.enable {
# if packets are still dropped, they will show up in dmesg
logReversePathDrops = true;
# wireguard trips rpfilter up
extraCommands = ''
ip46tables -t mangle -I nixos-fw-rpfilter -p udp -m udp --sport 51820 -j RETURN
ip46tables -t mangle -I nixos-fw-rpfilter -p udp -m udp --dport 51820 -j RETURN
'';
extraStopCommands = ''
ip46tables -t mangle -D nixos-fw-rpfilter -p udp -m udp --sport 51820 -j RETURN || true
ip46tables -t mangle -D nixos-fw-rpfilter -p udp -m udp --dport 51820 -j RETURN || true
'';
};
};
}