dotfiles/.config/nixshell/mongo.nix
2023-05-07 15:58:57 +02:00

13 lines
221 B
Nix

let
pkgs = import <nixpkgs> {};
unstable = import <unstable> {config.allowUnfree=true;};
in
pkgs.mkShell {
buildInputs = with pkgs; [
unstable.mongodb
mongosh
];
shellHook = ''
'';
}