Aravinth Manivannan
4750ab254b
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
53 lines
1 KiB
Nix
53 lines
1 KiB
Nix
{ pkgs, lib, config, inputs, ... }:
|
|
|
|
{
|
|
# https://devenv.sh/basics/
|
|
env.GREET = "devenv";
|
|
|
|
dotenv.enable = true;
|
|
|
|
languages.rust.enable = true;
|
|
# https://devenv.sh/reference/options/#languagesrustchannel
|
|
languages.rust.channel = "nightly";
|
|
|
|
# https://devenv.sh/packages/
|
|
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";
|
|
|
|
enterShell = ''
|
|
hello
|
|
git --version
|
|
'';
|
|
|
|
# https://devenv.sh/tests/
|
|
enterTest = ''
|
|
echo "Running tests"
|
|
git --version | grep "2.42.0"
|
|
'';
|
|
|
|
# https://devenv.sh/services/
|
|
# services.postgres.enable = true;
|
|
|
|
# https://devenv.sh/languages/
|
|
# languages.nix.enable = true;
|
|
|
|
# https://devenv.sh/pre-commit-hooks/
|
|
# pre-commit.hooks.shellcheck.enable = true;
|
|
|
|
# https://devenv.sh/processes/
|
|
# processes.ping.exec = "ping example.com";
|
|
|
|
# See full reference at https://devenv.sh/reference/options/
|
|
}
|