summaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2022-11-25 08:38:05 +0100
committerlassulus <lassulus@lassul.us>2022-11-25 08:38:47 +0100
commit417ad31ca5c149ff85bd5a4f61c81253e4906b65 (patch)
tree2e377dbebdaad9cfc023fad9cd1584faa516031b /example
parent1668efc14a56f126cd4aaa3fc2569120e962c2a9 (diff)
types: fix negative relative disk size
Diffstat (limited to 'example')
-rw-r--r--example/negative-size.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/example/negative-size.nix b/example/negative-size.nix
new file mode 100644
index 0000000..e41bae6
--- /dev/null
+++ b/example/negative-size.nix
@@ -0,0 +1,27 @@
+{ disks ? [ "/dev/vdb" "/dev/vdc" ], ... }: {
+ disk = {
+ disk0 = {
+ device = builtins.elemAt disks 0;
+ type = "disk";
+ content = {
+ type = "table";
+ format = "gpt";
+ partitions = [
+ {
+ name = "nix";
+ type = "partition";
+ part-type = "primary";
+ start = "0%";
+ end = "-10MiB";
+ bootable = true;
+ content = {
+ type = "filesystem";
+ format = "ext4";
+ mountpoint = "/";
+ };
+ }
+ ];
+ };
+ };
+ };
+}