41 lines
829 B
Nix
41 lines
829 B
Nix
{ lib, ... }: {
|
|
imports = [ ./wireguard.nix ];
|
|
networking = {
|
|
hostName = "Rico2";
|
|
|
|
networkmanager = {
|
|
enable = true;
|
|
dns = "systemd-resolved";
|
|
wifi = {
|
|
backend = "iwd";
|
|
powersave = false;
|
|
};
|
|
};
|
|
|
|
useDHCP = lib.mkDefault false;
|
|
|
|
wireless.iwd = {
|
|
enable = true;
|
|
settings = {
|
|
General = {
|
|
AddressRandomization = "network";
|
|
EnableNetworkConfiguration = false;
|
|
};
|
|
Settings = {
|
|
AutoConnect = "yes";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
services.resolved = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
[Resolve]
|
|
DNS=2620:fe::fe#dns.quad9.net 9.9.9.9#dns.quad9.net 2620:fe::9#dns.quad9.net 149.112.112.112#dns.quad9.net
|
|
FallbackDNS=
|
|
DNSOverTLS=opportunistic
|
|
Domains=~.
|
|
'';
|
|
};
|
|
}
|