diff --git a/network.nix b/network.nix index d524eb0..ae76690 100644 --- a/network.nix +++ b/network.nix @@ -73,6 +73,9 @@ in networking.hostId = mkDefault (builtins.abort "Default hostId not changed" null); networking.hostName = mkDefault (builtins.abort "Default hostname not changed" null); + # Needed for proper WiFi support in some countries (like France, for instance) + hardware.wirelessRegulatoryDatabase = mkDefault true; + networking.firewall.allowPing = !desktopCfg.enable; }; }