nixos-config/linux/blitzar/network.nix

14 lines
268 B
Nix

{ config, ... }:
{
networking = let const = config.constants; in {
domain = const.domain;
hostId = "30f8f777";
networkmanager = {
enable = true;
wifi.backend = "iwd";
};
nftables.enable = true;
wireless.iwd.enable = true;
};
}