Skip to content

Commit 30743a8

Browse files
committed
fix: nix devShell inclusion condition
1 parent 434a410 commit 30743a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nix/checks.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@
411411
inherit self;
412412
inherit pkgs;
413413
})
414-
// pkgs.lib.optionalAttrs (system == "x86_64-linux") { devShell = self'.devShells.default; }
415-
);
414+
)
415+
// pkgs.lib.optionalAttrs (system == "x86_64-linux") ({ devShell = self'.devShells.default; });
416416
};
417417
}

0 commit comments

Comments
 (0)