fix&feat: install openssl and init direnv
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Aravinth Manivannan 2024-05-19 22:09:20 +05:30
parent 5b7bd52167
commit 4750ab254b
Signed by: realaravinth
GPG key ID: F8F50389936984FF
2 changed files with 13 additions and 2 deletions

3
.envrc
View file

@ -1,3 +1,4 @@
source_url "https://raw.githubusercontent.com/cachix/devenv/95f329d49a8a5289d31e0982652f7058a189bfca/direnvrc" "sha256-d+8cBpDfDBj41inrADaJt+bDWhOktwslgoP5YiGJ1v0="
use devenv
use devenv
source .env

View file

@ -11,7 +11,17 @@
languages.rust.channel = "nightly";
# https://devenv.sh/packages/
packages = [ pkgs.git pkgs.gnumake pkgs.rustup pkgs.sqlx-cli pkgs.podman pkgs.podman-compose ];
packages = [
pkgs.git
pkgs.gnumake
pkgs.rustup
pkgs.sqlx-cli
pkgs.podman
pkgs.podman-compose
pkgs.openssl
pkgs.openssl
pkgs.direnv
];
# https://devenv.sh/scripts/
scripts.hello.exec = "echo hello from $GREET";