summaryrefslogtreecommitdiffstats
path: root/example.nix
blob: 38830b6db1633ad4d9d04304f1d37274b50a0bfd (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
# nix-instantiate --strict --json --eval format.nix | jq
{
  type = "table";
  format = "gpt";
  partitions = [
    {
      type = "partition";
      part-type = "ESP";
      start = "1MiB";
      end = "1024MiB";
      fs-type = "fat32";
      bootable = true;
      content = {
        type = "filesystem";
        format = "vfat";
        mountpoint = "/boot";
      };
    }
    {
      type = "partition";
      part-type = "primary";
      start = "1024MiB";
      end = "100%";
      content = {
        type = "luks";
        algo = "aes-xts...";
        name = "crypted";
        keyfile = "/tmp/secret.key";
        content = {
          type = "lvm";
          name = "pool";
          lvs = {
            root = {
              type = "lv";
              size = "10G";
              mountpoint = "/";
              content = {
                type = "filesystem";
                format = "ext4";
                mountpoint = "/";
              };
            };
            home = {
              type = "lv";
              size = "10G";
              content = {
                type = "filesystem";
                format = "ext4";
                mountpoint = "/home";
              };
            };
          };
        };
      };
    }
  ];
}