make mac randomization the default

This commit is contained in:
jacekpoz 2024-08-30 20:40:02 +02:00
parent d5d0488101
commit 7543296053
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8
5 changed files with 4 additions and 7 deletions

View file

@ -23,7 +23,6 @@
../../options/desktop/opentabletdriver.nix
../../options/desktop/power-supply.nix
../../options/desktop/qmk.nix
../../options/desktop/random-mac.nix
../../options/desktop/steam.nix
../../options/desktop/suspend.nix
../../options/desktop/v4l2.nix

View file

@ -23,7 +23,6 @@
../../options/desktop/opentabletdriver.nix
../../options/desktop/power-supply.nix
../../options/desktop/qmk.nix
../../options/desktop/random-mac.nix
../../options/desktop/suspend.nix
../../options/desktop/v4l2.nix
../../options/desktop/wayland.nix

View file

@ -26,7 +26,6 @@
../../options/desktop/opentabletdriver.nix
#../../options/desktop/power-supply.nix
../../options/desktop/qmk.nix
../../options/desktop/random-mac.nix
../../options/desktop/steam.nix
../../options/desktop/suspend.nix
../../options/desktop/v4l2.nix

View file

@ -25,7 +25,10 @@ in {
enable = true;
dns = "systemd-resolved";
plugins = mkForce cfg.plugins;
# wifi.backend = "iwd";
wifi = {
# backend = "iwd";
macAddress = "random";
};
};
firewall.checkReversePath = "loose";
};

View file

@ -1,3 +0,0 @@
{
networking.networkmanager.wifi.macAddress = "random";
}