Fix wifi disconnect issue?

This commit is contained in:
2025-11-12 23:04:29 +01:00
parent a68a903b9e
commit 11b01dd83f

View File

@@ -1,13 +1,19 @@
{ ... }:
{
networking.hostName = "nixos";
networking.wireless = {
iwd = {
enable = true;
};
};
networking = {
hostName = "nixos";
wireless = {
iwd = {
enable = true;
};
};
networkmanager = {
wifi.backend = "iwd";
};
nftables.enable = true;
firewall.enable = true;
};