btw i use nix
1{
2 config,
3 lib,
4 nixpkgs,
5 ...
6}:
7
8{
9 imports = [ "${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix" ];
10
11 nixpkgs.hostPlatform = "aarch64-linux";
12
13 custom = {
14 enable = true;
15 };
16
17 networking.wireless = {
18 enable = true;
19 networks = {
20 "SSID" = {
21 psk = "password";
22 };
23 };
24 };
25}