feat: added devtools

This commit is contained in:
2024-12-18 08:51:37 +01:00
parent ef36e6c289
commit c35cd3ee48
6 changed files with 91 additions and 5 deletions

View File

@@ -0,0 +1,61 @@
{ inputs, pkgs, rust-overlay, ... }:
{
home.packages = with pkgs; [
# general
docker
docker-compose
# iot
platformio
# rust
openssl
cargo
pkg-config
cargo-deny
cargo-edit
cargo-watch
rust-analyzer
# bash
shellcheck
# nodejs
node2nix
nodejs
nodePackages.pnpm
yarn
# # python
# python311
# python311Packages.pip
# python311Packages.venvShellHook
# cpp
clang-tools
cmake
codespell
conan
cppcheck
doxygen
gtest
lcov
vcpkg
# vcpkg-tool
valgrind
# haskell
cabal-install
ghc
haskell-language-server
# nix
cachix
lorri
niv
nixfmt-classic
statix
vulnix
haskellPackages.dhall-nix
];
}