NOflake/extras/dev.nix
2025-03-01 16:13:22 -08:00

115 lines
1.9 KiB
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
devenv
act
aichat
# (llm.withPlugins (ps: with ps; [llm-openrouter]))
# llm
aider-chat
# digital
asm-lsp
gh
# bash-language-server
qemu
# quickemu
# lychee # link checker
# etcher
# freecad
# vulkan-loader
# fontforge
# radicle-node
hyperfine # benchmarking
markdown-oxide
git-cliff
b3sum
direnv
jujutsu
just
lldb
lua-language-server
qFlipper
sd
sshfs
taplo # toml lsp
tio
tokei
typos
# databases
# sqlite
# sqls
# sqlx-cli
# sea-orm-cli
# rainfrog
# # arduino
# arduino-language-server
# arduino-cli
# pkgsCross.avr.buildPackages.gcc
# avrdude
# ravedude
# c
clang
clang-tools
gcc
gdb
gnumake
# nix
nil
alejandra
# python
# pypy3
# python3
(python3.withPackages (ps:
with ps; [
llm
# llm-openrouter
]))
# python310Packages.python-lsp-server
uv
ruff
ruff-lsp
# go
# go
# gopls
# delve
# rust
cargo-binstall
bacon
cargo-expand
cargo-feature
cargo-generate
cargo-watch
elf2uf2-rs
flip-link
mdbook
mold-wrapped
probe-rs
rustup
sccache
trunk
wasm-bindgen-cli
];
hardware.flipperzero.enable = true;
services.udev.extraRules = ''
SUBSYSTEM == "tty", GROUP="dialout", ATTRS{interface}=="Black Magic GDB Server", SYMLINK+="ttyBmpGdb"
SUBSYSTEM == "tty", GROUP="dialout", ATTRS{interface}=="Black Magic UART Port", SYMLINK+="ttyBmpTarg"
'';
# virtualisation.docker = {
# enable = true;
# storageDriver = "btrfs";
# };
# virtualisation.docker.rootless = {
# enable = true;
# setSocketVariable = true;
# };
# users.extraGroups.docker.members = ["tao"];
}