This commit is contained in:
cătălin 2024-12-10 21:01:36 +01:00
commit fb72e5f1c2
No known key found for this signature in database
46 changed files with 3027 additions and 742 deletions

22
devenv.nix Normal file
View file

@ -0,0 +1,22 @@
{ pkgs, lib, config, inputs, ... }:
{
env.GREET = "devenv";
packages = [ pkgs.git ];
languages.python.enable = true;
languages.python.uv.enable = true;
scripts.hello.exec = ''
echo hello from $GREET
'';
enterShell = ''
hello
git --version
fish
'';
dotenv.enable = true;
}