mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2026-02-20 07:08:02 +00:00
Switched wpa_supplicant for iwd
This commit is contained in:
@@ -75,10 +75,21 @@
|
||||
blacklistedKernelModules = ["nouveau"];
|
||||
};
|
||||
|
||||
networking.hostName = "worklaptop"; # Define your hostname.
|
||||
|
||||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
# Configure networking
|
||||
networking = {
|
||||
hostName = "worklaptop"; # Define your hostname.
|
||||
networkmanager.enable = false;
|
||||
wireless.iwd = {
|
||||
enable = true;
|
||||
settings = {
|
||||
General.EnableNetworkConfiguration = true;
|
||||
Network = {
|
||||
EnableIPv6 = true;
|
||||
NameResolvingService = "systemd";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "Europe/Dublin";
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
variant = "";
|
||||
};
|
||||
};
|
||||
resolved.enable = true;
|
||||
pulseaudio.enable = false;
|
||||
pipewire = {
|
||||
enable = true;
|
||||
|
||||
Reference in New Issue
Block a user