summaryrefslogtreecommitdiff
path: root/hosts/bibus-lab/disko.nix
blob: 5d0f0b87bd70f072cc5a9fc88640ad2c6a97a7fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
{
  disko.devices = {
    main = {
      type = "disk";
      device = "/dev/disk/by-id/";
      content = {
        type = "gpt";
        partitions = {
          ESP = {
            size = "2G";
            type = "EF00";
            content = {
              type = "flesystem";
              format = "vfat";
              mountpoint = "/boot";
            };
          };
          zfs = {
            size = "100%";
            content = {
              type = "zfs";
              pool = "zroot";
            };
          };
        };
      };
    };
    hdd1 = {
      type = "disk";
      device = "/dev/disk/by-id/";
      content = {
        type = "gpt";
        partitions = {
          zfs = {
            size = "100%";
            content = {
              type = "zfs";
              pool = "tank";
            };
          };
        };
      };
    };
    hdd2 = {
      type = "disk";
      device = "/dev/disk/by-id/";
      content = {
        type = "gpt";
        partitions = {
          zfs = {
            size = "100%";
            content = {
              type = "zfs";
              pool = "tank";
            };
          };
        };
      };
    };
    hdd3 = {
      type = "disk";
      device = "/dev/disk/by-id/";
      content = {
        type = "gpt";
        partitions = {
          zfs = {
            size = "100%";
            content = {
              type = "zfs";
              pool = "tank";
            };
          };
        };
      };
    };
    zpool = {
      zroot = {
        type = "zpool";
        rootTmpfs = true;
        datasets = {
          "rpool" = {
            type = "zfs_fs";
            options.mountpoint = "none";
            encryption = "aes-256-gcm";
            keyformat = "raw";
            keylocation = "file:///mnt/zroot.key";
            options = {
              compression = "zstd";
              atime = "off";
            };
          };
          "rpool/root" = {
            type = "zfs_fs";
            mountpoint = "/";
          };
          "rpool/nix" = {
            type = "zfs_fs";
            mountpoint = "/nix";
          };
          "rpool/home" = {
            type = "zfs_fs";
            mountpoint = "/home";
          };
          "rpool/log" = {
            type = "zfs_fs";
            mountpoint = "/var/log";
          };
          "rpool/var/systemd" = {
            type = "zfs_fs";
            mountpoint = "/var/lib/systemd";
          };
          "rpool/var/acme" = {
            type = "zfs_fs";
            mountpoint = "/var/lib/acme";
          };
          "rpool/docker" = {
            type = "zfs_fs";
            mountpoint = "/var/lib/containers";
          };
          "rpool/appdata/configs" = {
            type = "zfs_fs";
            mountpoint = "/var/lib/appdata/configs";
          };
          "rpool/appdata/databases" = {
            type = "zfs_fs";
            mountpoint = "/var/lib/appdata/databases";
            options.recordsize = "16K";
          };
          "rpool/appdata/monero" = {
            type = "zfs_fs";
            mountpoint = "/var/lib/monero";
            options.recordsize = "8K";
          };
          "rpool/appdata/mail" = {
            type = "zfs_fs";
            mountpoint = "/var/vmail";
            options = {
              atime = "on";
              recordsize = "64K";
            };
          };
          "rpool/appdata/games" = {
            type = "zfs_fs";
            mountpoint = "/var/lib/games";
            options.recordsize = "64K";
          };
        };
      };
      tank = {
        type = "zpool";
        mode = "raidz1";

        datasets = {
          "ztank" = {
            type = "zfs_fs";
            mountpoint = "none";
            encryption = "aes-256-gcm";
            keyformat = "raw";
            keylocation = "file:///mnt/ztank.key";
            options = {
              compression = "zstd";
              atime = "off";
            };
          };
          "ztank/media" = {
            type = "zfs_fs";
            mountpoint = "/data/media";
            options = {
              compression = "none";
              recordsize = "1M";
            };
          };
          "ztank/vault" = {
            type = "zfs_fs";
            mountpoint = "/data/vault";
          };
          "ztank/vault/seafile" = {
            type = "zfs_fs";
            mountpoint = "/data/vault/seafile";
            options.recordsize = "1M";
          };
          "ztank/vault/seafile/personal" = {
            type = "zfs_fs";
            mountpoint = "/data/vault/seafile/personal";
          };
          "ztank/vault/seafile/shared" = {
            type = "zfs_fs";
            mountpoint = "/data/vault/seafile/shared";
            refquota = "1T";
          };
          "ztank/downloads/active" = {
            type = "zfs_fs";
            mountpoint = "/data/downloads/active";
            options.recordsize = "16K";
          };
          "ztank/downloads/complete" = {
            type = "zfs_fs";
            mountpoint = "/data/downloads/complete";
            options.recordsize = "1M";
          };
          "ztank/cctv" = {
            type = "zfs_fs";
            mountpoint = "/data/cctv";
            options.recordsize = "1M";
          };
          "ztank/backups" = {
            type = "zfs_fs";
            mountpoint = "/data/backups";
            options.recordsize = "1M";
          };
        };
      };
    };
  };
}