diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-08-17 20:48:18 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-08-17 20:48:18 -0500 |
| commit | 2b1c6161c5d2381cbfe224694dfb218aee0b6da1 (patch) | |
| tree | e51c7bd694d5ad27fb9e68e51f11aae4e8c57fcc /modules/networking/nixos/iwd.nix | |
| parent | e29dd8a2283399b7e046937340509d5aec4b52ba (diff) | |
something is seriously broken rn
Diffstat (limited to 'modules/networking/nixos/iwd.nix')
| -rw-r--r-- | modules/networking/nixos/iwd.nix | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/modules/networking/nixos/iwd.nix b/modules/networking/nixos/iwd.nix deleted file mode 100644 index 0c5bdfa..0000000 --- a/modules/networking/nixos/iwd.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ - lib, - config, - ... -}: let - cfg = config.collinux.system.network; - enabled = cfg.wireless.dynamic; -in - lib.mkIf enabled { - networking = { - wireless.iwd = { - enable = true; - settings = { - General = { - EnableNetworkConfiguration = false; # always let networkd handle this - AddressRandomization = "once"; - AddressRandomizationRange = "full"; - }; - Network.NameResolvingService = "systemd"; # either systemd or resolvconf - }; - }; - }; - } |
