diff options
author | lassulus <lassulus@lassul.us> | 2022-12-01 20:10:58 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2022-12-01 20:10:58 +0100 |
commit | c3a7680451b25214ddbee3ab55a6d1b67f6e2a60 (patch) | |
tree | 254a5cf8f5c9fae60467d82965447bd97a334d15 /example | |
parent | 0d922a482d78c62585d4215e58312a2b86da09b1 (diff) |
example with-lib: remove traceValSeq
Diffstat (limited to 'example')
-rw-r--r-- | example/with-lib.nix | 4 |
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 @@ } ]; }; - })); + }); } |