diff options
author | tv <tv@krebsco.de> | 2018-07-13 13:47:35 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2018-07-13 13:47:35 +0200 |
commit | bd33f8c4816567d0942e131bb39adf870da796bb (patch) | |
tree | af4ddac88fc53e997294db9f68b38d4051641c0c /example-data.nix | |
parent | 256b8d066a5f2a66d4fac5de9a19d56b63a58324 (diff) |
rename disko.nix to example.nixderp
Diffstat (limited to 'example-data.nix')
-rw-r--r-- | example-data.nix | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/example-data.nix b/example-data.nix new file mode 100644 index 0000000..b5b19e9 --- /dev/null +++ b/example-data.nix @@ -0,0 +1,57 @@ +# usage: nix-instantiate --strict --json --eval example-data.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"; + }; + }; + }; + }; + }; + } + ]; +} |