summaryrefslogtreecommitdiffstats
path: root/example/zfs-over-legacy.nix
blob: 8f5a8bc6215f6c66169b3ef77924db013215994d (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
{
  type = "devices";
  content = {
    vdb = {
      type = "table";
      format = "gpt";
      partitions = [
        {
          type = "partition";
          # leave space for the grub aka BIOS boot
          start = "0%";
          end = "100%";
          part-type = "primary";
          bootable = true;
          content = {
            type = "filesystem";
            format = "ext4";
            mountpoint = "/";
          };
        }
      ];
    };
    vdc = {
      type = "zfs";
      pool = "zroot";
    };
    zroot = {
      type = "zpool";
      mountpoint = "/";

      datasets = [
        {
          type = "zfs_filesystem";
          name = "zfs_fs";
          mountpoint = "/zfs_fs";
          options."com.sun:auto-snapshot" = "true";
        }
      ];
    };
  };
}