Initial import

This commit is contained in:
Alexander Kobjolke 2025-04-11 17:06:24 +02:00
commit bb4a868284
5 changed files with 155 additions and 0 deletions

23
devenv.nix Normal file
View file

@ -0,0 +1,23 @@
{ pkgs, lib, config, inputs, ... }:
{
# https://devenv.sh/basics/
#env.GREET = "devenv";
# https://devenv.sh/packages/
packages = [ pkgs.watchexec ];
# https://devenv.sh/languages/
languages.rust.enable = true;
# https://devenv.sh/processes/
processes.cargo-watch.exec = "cargo-watch";
# https://devenv.sh/services/
# services.postgres.enable = true;
# https://devenv.sh/scripts/
git-hooks.hooks.shellcheck.enable = true;
# See full reference at https://devenv.sh/reference/options/
}