Add shell.nix

This commit is contained in:
sysnet 2025-05-31 23:35:05 +00:00
parent 06105f50e8
commit eb64f1ccf8

11
shell.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
# necessary for those based nixos users who dont want to install system-wide deps
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
openssl
file
coreutils
minio-client
];
}