Fix wifi disconnect issue?

main
Hektor Misplon 2025-11-12 23:04:29 +01:00
parent a68a903b9e
commit 11b01dd83f
1 changed files with 12 additions and 6 deletions

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;
};