nixos-desktop/2025-2026-02.nix
2026-02-23 18:37:22 +01:00

28 lines
435 B
Nix

{
config,
pkgs,
lib,
...
}:
{
environment.systemPackages = with pkgs; [
haskell.compiler.ghcHEAD
dotnet-sdk_9
netcoredbg
cmake
catch2_3
gnumake
jupyter
# Do not forget to update the version in the jupyter kernel when updating
(python314.withPackages (
python-pkgs: with python-pkgs; [
matplotlib
ipykernel
]
))
javaPackages.compiler.openjdk25
];
}