Initial commit

This commit is contained in:
Christoph Hollizeck 2025-07-17 10:15:06 +02:00
commit 4972944cc0
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
11 changed files with 748 additions and 0 deletions

39
devenv.nix Normal file
View file

@ -0,0 +1,39 @@
{
pkgs,
lib,
config,
inputs,
...
}:
let
system = pkgs.stdenv.system;
in
{
# https://devenv.sh/basics/
# https://devenv.sh/languages/
languages.zig = {
enable = true;
package = inputs.zig-overlay.packages.${system}."0.14.0";
zls.package = inputs.zls.packages.${system}.default;
};
# https://devenv.sh/processes/
# processes.cargo-watch.exec = "cargo-watch";
# https://devenv.sh/services/
# services.postgres.enable = true;
# https://devenv.sh/tasks/
# tasks = {
# "myproj:setup".exec = "mytool build";
# "devenv:enterShell".after = [ "myproj:setup" ];
# };
# https://devenv.sh/tests/
# https://devenv.sh/git-hooks/
# git-hooks.hooks.shellcheck.enable = true;
# See full reference at https://devenv.sh/reference/options/
}