Skip to content

Commit 0576ae7

Browse files
jfrocheyvan-sraka
authored andcommitted
fix: nix devShell inclusion condition
1 parent 2be2d92 commit 0576ae7

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
@@ -412,7 +412,7 @@
412412
inherit self;
413413
inherit pkgs;
414414
})
415-
// pkgs.lib.optionalAttrs (system == "x86_64-linux") { devShell = self'.devShells.default; }
416-
);
415+
)
416+
// pkgs.lib.optionalAttrs (system == "x86_64-linux") ({ devShell = self'.devShells.default; });
417417
};
418418
}

0 commit comments

Comments
 (0)