The nixpad rabbit hole

This commit is contained in:
2025-12-30 07:07:10 +02:00
parent 6a40fb1f5a
commit adddfdd16d
12 changed files with 314 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
{
programs.git = {
enable = true;
};
environment.systemPackages = with pkgs; [
python315 graphviz
texliveFull
rustup gcc go
cmake gnumake
trunk slumber
direnv
];
}