This repository has been archived on 2026-08-19. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
huesoporro/devenv.nix

16 lines
254 B
Nix

{ pkgs, lib, config, inputs, ... }:
{
env.GREET = "devenv";
packages = [ pkgs.git ];
languages.python.enable = true;
languages.python.uv.enable = true;
languages.python.version = "3.12.8";
enterShell = ''
'';
dotenv.enable = true;
}