nixos-desktop/2025-2026-02.nix
2026-02-19 23:09:41 +01:00

27 lines
406 B
Nix

{
config,
pkgs,
lib,
...
}:
{
environment.systemPackages = with pkgs; [
haskell.compiler.ghcHEAD
dotnet-sdk_9
netcoredbg
jdk
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
]
))
];
}