62 lines
670 B
Nix
62 lines
670 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
jq
|
|
curl
|
|
|
|
openssl
|
|
gdb
|
|
libgcc
|
|
gcc
|
|
gccStdenv
|
|
gnumake
|
|
libcxx
|
|
libclc
|
|
libcap
|
|
libcutl
|
|
cmake
|
|
i2pd-tools
|
|
autoconf
|
|
xorg-autoconf
|
|
automake
|
|
autobuild
|
|
libtool
|
|
pkgconf
|
|
libpkgconf
|
|
pkg-config
|
|
valgrind
|
|
|
|
imagemagickBig
|
|
|
|
plantuml
|
|
|
|
rustup
|
|
rustfmt
|
|
treefmt
|
|
|
|
yarn
|
|
nodejs-slim
|
|
|
|
uv
|
|
thonny
|
|
|
|
#dotnet-sdk_8
|
|
#dotnet-sdk_9
|
|
#dotnet-sdk_10
|
|
#dotnet-aspnetcore
|
|
#dotnet-ef
|
|
|
|
unstable.nrfconnect
|
|
unstable.nrfutil
|
|
|
|
];
|
|
|
|
programs.dconf.enable = lib.mkDefault true;
|
|
}
|