flake-update-20260201
 1_: {
 2  fileSystems."/" = {
 3    device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
 4    fsType = "ext4";
 5  };
 6  fileSystems."/neo" = {
 7    device = "/dev/disk/by-uuid/0a779a30-903e-4bef-b1bc-bcdd4a978afe";
 8    fsType = "ext4";
 9  };
10
11  swapDevices = [
12    {
13      device = "/swapfile";
14      size = 8 * 1024; # 8GB
15    }
16  ];
17
18  hardware = {
19    deviceTree = {
20      enable = true;
21      name = "rockchip/rk3588-friendlyelec-cm3588-nas.dtb";
22    };
23  };
24}