diff options
author | Lassulus <github@lassul.us> | 2022-12-01 22:37:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-01 22:37:53 +0100 |
commit | aca927667acea7bb01dc8e72ee71f6548d9fd41b (patch) | |
tree | 2d372d2a79b3663e8653e0fc16fd436c75a12758 /example | |
parent | 4c1b8a4e596fa5b9e23ad78170c95512ab71bd74 (diff) | |
parent | 25cc022282590f36ed2c3cb542774053d58dddc8 (diff) |
Merge pull request #65 from nix-community/no-deps
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 @@ } ]; }; - })); + }); } |