13 lines
223 B
Nix
13 lines
223 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
unstable = import <unstable> {config.allowUnfree=true;};
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
#unstable.mongodb
|
|
#mongosh
|
|
];
|
|
shellHook = ''
|
|
'';
|
|
}
|