mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 20:20:41 +03:00
17 lines
146 B
Nix
17 lines
146 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
gcc
|
|
gdb
|
|
cmake
|
|
gnumake
|
|
|
|
nlohmann_json
|
|
];
|
|
}
|