fix&feat: install openssl and init direnv
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
5b7bd52167
commit
4750ab254b
2 changed files with 13 additions and 2 deletions
1
.envrc
1
.envrc
|
@ -1,3 +1,4 @@
|
||||||
source_url "https://raw.githubusercontent.com/cachix/devenv/95f329d49a8a5289d31e0982652f7058a189bfca/direnvrc" "sha256-d+8cBpDfDBj41inrADaJt+bDWhOktwslgoP5YiGJ1v0="
|
source_url "https://raw.githubusercontent.com/cachix/devenv/95f329d49a8a5289d31e0982652f7058a189bfca/direnvrc" "sha256-d+8cBpDfDBj41inrADaJt+bDWhOktwslgoP5YiGJ1v0="
|
||||||
|
|
||||||
use devenv
|
use devenv
|
||||||
|
source .env
|
||||||
|
|
12
devenv.nix
12
devenv.nix
|
@ -11,7 +11,17 @@
|
||||||
languages.rust.channel = "nightly";
|
languages.rust.channel = "nightly";
|
||||||
|
|
||||||
# https://devenv.sh/packages/
|
# 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/
|
# https://devenv.sh/scripts/
|
||||||
scripts.hello.exec = "echo hello from $GREET";
|
scripts.hello.exec = "echo hello from $GREET";
|
||||||
|
|
Loading…
Reference in a new issue