We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8eb73bf commit 6a1fa24Copy full SHA for 6a1fa24
nix/overlay.nix
@@ -4,5 +4,11 @@ final: prev: {
4
# nix runtime but not end up in a derivation. passthru.tests is
5
# one very common attribute.
6
passthru.tests.basic-raft = final.callPackage ./nixos-tests/basic-raft { };
7
+
8
+ # My personal preference is to put a dev shell in there, too
9
+ passthru.shell = final.mkShell {
10
+ name = "null-db-shell";
11
+ inputsFrom = [ final.null-db ];
12
+ };
13
});
14
}
shell.nix
@@ -0,0 +1 @@
1
+with import ./. { }; null-db.shell
0 commit comments