nixos-config/linux/blitzar/network.nix
2023-11-27 21:44:04 -08:00

13 lines
302 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;
};
services.resolved.enable = true;
}