Trying something else

This commit is contained in:
2026-02-16 13:36:17 -07:00
parent 5db8d35a2f
commit c2694f46a2
11 changed files with 232 additions and 126 deletions

View File

@@ -0,0 +1,21 @@
{ pkgs, ... }:
let
rustToolchain = pkgs.rust-bin.stable.latest.default.override {
extensions = [ "rust-src" "rust-analyzer" ];
targets = [ "aarch64-apple-darwin" ];
};
in
{
environment.systemPackages = with pkgs; [
rustToolchain
python313
openjdk
openjdk17
lua
luajit
perl
ruby
go
];
}