update model to modular structure
This commit is contained in:
27
system-environment/config.nix
Normal file
27
system-environment/config.nix
Normal 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 = {
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user