nixos-config/linux/blitzar/network.nix

15 lines
268 B
Nix
Raw Normal View History

2024-01-16 18:48:06 -08:00
{ config, ... }:
{
2023-11-27 13:19:16 -08:00
networking = let const = config.constants; in {
domain = const.domain;
2023-10-09 10:44:07 -07:00
hostId = "30f8f777";
networkmanager = {
enable = true;
wifi.backend = "iwd";
};
nftables.enable = true;
wireless.iwd.enable = true;
};
}