Add Vendor Modules and Devenv.

This commit is contained in:
Michael Lehmann
2024-12-20 20:56:48 +01:00
parent 9fe4e7f9b7
commit 144d778d11
77 changed files with 278634 additions and 0 deletions

33
devenv.nix Normal file
View File

@@ -0,0 +1,33 @@
{
pkgs,
lib,
config,
inputs,
...
}: {
# https://devenv.sh/basics/
env.GREET = "Project Newsboat-YT";
# https://devenv.sh/packages/
packages = [];
# https://devenv.sh/languages/
languages.go = {
enable = true;
enableHardeningWorkaround = true;
};
# https://devenv.sh/scripts/
scripts.hello.exec = ''
echo hello from $GREET
'';
enterShell = ''
hello
'';
# https://devenv.sh/tests/
enterTest = ''
echo "Running tests"
'';
}