summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--example/with-lib.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/with-lib.nix b/example/with-lib.nix
index e746f5b..ce0b93d 100644
--- a/example/with-lib.nix
+++ b/example/with-lib.nix
@@ -1,6 +1,6 @@
# Example to create a bios compatible gpt partition
{ disks ? [ "/dev/vdb" ], lib, ... }: {
- disk = lib.traceValSeq (lib.genAttrs [ (lib.head disks) ] (device: {
+ disk = lib.genAttrs [ (lib.head disks) ] (device: {
device = device;
type = "disk";
content = {
@@ -31,5 +31,5 @@
}
];
};
- }));
+ });
}