From db6151ff06777deb05b345f1775c037d8671687d Mon Sep 17 00:00:00 2001 From: lassulus Date: Fri, 13 Jul 2018 11:16:12 +0200 Subject: initial vommit --- example.nix | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 example.nix (limited to 'example.nix') diff --git a/example.nix b/example.nix new file mode 100644 index 0000000..38830b6 --- /dev/null +++ b/example.nix @@ -0,0 +1,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"; + }; + }; + }; + }; + }; + } + ]; +} -- cgit v1.2.3