dotfiles/.config/nixshell/mongo.nix
2023-10-29 14:51:29 +01:00

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 = ''
'';
}