{ config, lib, ... }: { age.secrets.wireless-secrets = { file = ../secrets/wireless-secrets.age; }; networking = { useDHCP = true; wireless = { enable = true; # force wpa_supplicant to use all wlan interfaces interfaces = lib.mkForce [ ]; secretsFile = config.age.secrets.wireless-secrets.path; networks = { # yea this is my home network :3 # (my boyfriends brother picked the name) "Das asoziale Netzwerk".pskRaw = "ext:psk_home"; }; }; }; }