summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2022-12-01 20:10:58 +0100
committerlassulus <lassulus@lassul.us>2022-12-01 20:10:58 +0100
commitc3a7680451b25214ddbee3ab55a6d1b67f6e2a60 (patch)
tree254a5cf8f5c9fae60467d82965447bd97a334d15
parent0d922a482d78c62585d4215e58312a2b86da09b1 (diff)
example with-lib: remove traceValSeq
-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 @@
}
];
};
- }));
+ });
}