NOflake/extras/dev.nix

42 lines
872 B
Nix
Raw Normal View History

2023-07-23 20:21:08 -07:00
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
2023-11-08 16:37:18 -08:00
# unstable.swagger-cli
# swagger-codegen
2023-11-10 22:47:39 -08:00
sshfs
2023-11-08 16:37:18 -08:00
openapi-generator-cli
2023-11-01 18:58:21 -07:00
bacon
2023-10-19 11:01:23 -07:00
clang
2023-11-01 18:58:21 -07:00
clang-tools
etcher
freecad
gcc
gdb
gnumake
lldb
2023-09-30 22:39:53 -07:00
nil
2023-11-01 18:58:21 -07:00
nixpkgs-fmt
rustup
2023-09-28 23:33:56 -07:00
unstable.cargo
2023-11-01 18:58:21 -07:00
unstable.cargo-edit
2023-09-28 23:33:56 -07:00
unstable.cargo-feature
unstable.cargo-rr
unstable.clippy
unstable.elf2uf2-rs
2023-11-01 18:58:21 -07:00
unstable.pijul
2023-09-28 23:33:56 -07:00
unstable.rust-analyzer
unstable.rustc
2023-11-01 18:58:21 -07:00
unstable.rustfmt
2023-09-28 23:33:56 -07:00
unstable.sccache
vulkan-loader
];
2023-11-03 13:03:37 -07:00
nixpkgs.config.permittedInsecurePackages = [
"electron-12.2.3"
];
2023-08-08 13:20:33 -07:00
2023-08-08 15:26:32 -07:00
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"
'';
2023-07-23 20:21:08 -07:00
}