update model to modular structure

This commit is contained in:
2026-02-22 06:17:06 +01:00
parent 9e1725a408
commit c800117125
6 changed files with 30 additions and 20 deletions

View File

@@ -0,0 +1,27 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Make systems
gnumake
cmake
cmakeCurses
# C/C++/Fortran tools
gcc
clang
# Common C based dependencies
eigen
# Ada/+Spark & Rust tools
alire
gnat
rustc
cargo
];
environment.variables = {
};
}