15 lines
306 B
Nix
15 lines
306 B
Nix
|
|
{ config, ... }: {
|
||
|
|
networking = {
|
||
|
|
domain = config.constants.domain;
|
||
|
|
hostId = "30f8f777";
|
||
|
|
hostName = "blitzar";
|
||
|
|
networkmanager = {
|
||
|
|
enable = true;
|
||
|
|
wifi.backend = "iwd";
|
||
|
|
};
|
||
|
|
nftables.enable = true;
|
||
|
|
wireless.iwd.enable = true;
|
||
|
|
};
|
||
|
|
services.resolved.enable = true;
|
||
|
|
}
|