initial commit

This commit is contained in:
2026-05-04 11:39:04 +02:00
commit ddfb5b3ddb
6 changed files with 37 additions and 0 deletions

18
shell.nix Normal file
View File

@ -0,0 +1,18 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs;[
rustup
];
nativeBuildInputs = with pkgs;[
libpq
libmysqlclient
sqlite
];
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
shellHook = ''
[ ! -f .env ] || export $(grep -v '^#' .env | xargs)
'';
}