diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2024-04-04 19:17:33 +0200 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2024-04-04 19:17:33 +0200 |
| commit | 7b7eb8e4be38cadc5449d196b12eb69012f6ff60 (patch) | |
| tree | 2be1d553b9c775f5af0fda4bc16027c1dde27980 /modules/nixos/personal/networking | |
| parent | 8747a9c3447ca71809c08a3fe607d0691c0ba27e (diff) | |
nixos: wifi: remove uuids
Diffstat (limited to 'modules/nixos/personal/networking')
| -rw-r--r-- | modules/nixos/personal/networking/wifi.nix | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/nixos/personal/networking/wifi.nix b/modules/nixos/personal/networking/wifi.nix index 2df8f6e..7416454 100644 --- a/modules/nixos/personal/networking/wifi.nix +++ b/modules/nixos/personal/networking/wifi.nix @@ -6,12 +6,11 @@ cfg = config.personal.networking.wifi; mkWifiProfile = { id, - uuid, ssid, }: { "${id}" = { connection = { - inherit id uuid; + inherit id; type = "wifi"; }; wifi = { @@ -42,17 +41,14 @@ in { { id = "home-private"; ssid = "Quentintranet"; - uuid = "e1e7e428-cf9f-4123-ac5b-641e6458d7e5"; } { id = "hotspot"; ssid = "Quentinternational"; - uuid = "e18bf2e0-e9b6-454c-b7f3-e264c29f4e88"; } { id = "home-cercier"; ssid = "ARISTOTE"; - uuid = "6ca53030-e03b-46ac-8a11-00b0787b3fa9"; } ]; }; |
