configuration.nix/hosts/rico2/network.nix

33 lines
591 B
Nix
Raw Normal View History

2023-11-04 16:12:45 +05:30
{ lib, ... }: {
imports = [ ./wireguard.nix ];
2023-08-19 23:20:07 +05:30
networking = {
hostName = "Rico2";
networkmanager = {
enable = true;
dns = "systemd-resolved";
wifi = {
backend = "iwd";
powersave = false;
};
};
2023-08-19 23:20:07 +05:30
useDHCP = lib.mkDefault false;
wireless.iwd = {
enable = true;
settings = {
General = {
AddressRandomization = "network";
EnableNetworkConfiguration = false;
2023-08-19 23:20:07 +05:30
};
Settings = {
AutoConnect = "yes";
2023-08-19 23:20:07 +05:30
};
};
};
};
services.resolved.enable = true;
2023-08-19 23:20:07 +05:30
}