Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
gwg313 2026-04-13 17:57:28 -04:00
commit e776c88219
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
118 changed files with 16463 additions and 0 deletions

58
devenv.nix Normal file
View file

@ -0,0 +1,58 @@
{
pkgs,
lib,
config,
inputs,
...
}:
{
# https://devenv.sh/basics/
env.GREET = "devenv";
# https://devenv.sh/packages/
packages = [
pkgs.git
pkgs.glpk
pkgs.cbc
pkgs.jq
];
# https://devenv.sh/languages/
languages.python.enable = true;
languages.python.poetry.enable = true;
languages.python.poetry.activate.enable = true;
# https://devenv.sh/processes/
# processes.cargo-watch.exec = "cargo-watch";
# https://devenv.sh/services/
# services.postgres.enable = true;
# https://devenv.sh/scripts/
scripts.hello.exec = ''
echo hello from $GREET
'';
enterShell = ''
hello
git --version
'';
# https://devenv.sh/tasks/
# tasks = {
# "myproj:setup".exec = "mytool build";
# "devenv:enterShell".after = [ "myproj:setup" ];
# };
# https://devenv.sh/tests/
enterTest = ''
echo "Running tests"
git --version | grep --color=auto "${pkgs.git.version}"
'';
# https://devenv.sh/git-hooks/
# git-hooks.hooks.shellcheck.enable = true;
# See full reference at https://devenv.sh/reference/options/
}