main
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 fileSystems."/zion" = {
11 device = "/dev/disk/by-uuid/2fc28e6f-e535-4854-8d56-b04715fe891b";
12 fsType = "ext4";
13 };
14
15 swapDevices = [
16 {
17 device = "/swapfile";
18 size = 8 * 1024; # 8GB
19 }
20 ];
21
22 hardware = {
23 deviceTree = {
24 enable = true;
25 name = "rockchip/rk3588-friendlyelec-cm3588-nas.dtb";
26 };
27 };
28}