stockholm/makefu/2configs/tools/dev.nix

43 lines
808 B
Nix
Raw Normal View History

2017-03-01 14:45:50 +00:00
{ pkgs, ... }:
{
2017-08-16 10:18:42 +00:00
users.users.makefu.packages = with pkgs;[
2019-04-05 00:02:08 +00:00
(python3.withPackages(ps: [
ps.python-language-server
# the following plugins are optional, they provide type checking, import sorting and code formatting
ps.pyls-mypy ps.pyls-isort ps.pyls-black
ps.virtualenv ps.pyserial ps.virtualenv
2019-04-05 00:02:08 +00:00
]))
2017-05-02 12:04:01 +00:00
# embedded
picocom
2017-08-16 10:18:42 +00:00
gi
2017-03-01 14:45:50 +00:00
flashrom
2017-05-02 12:04:01 +00:00
mosquitto
nodemcu-uploader
esptool
2018-01-03 23:53:04 +00:00
# nix related
nix-index
nix-review
brain
whatsupnix
nixpkgs-pytools
2017-12-29 01:44:11 +00:00
# git-related
git-preview
2017-12-29 01:44:11 +00:00
tig
2019-04-05 00:02:08 +00:00
(pkgs.callPackage ./init-host {})
# used more than once
imagemagick
qrencode
exiftool
cac-api
cac-panel
krebszones
ovh-zone
gen-oath-safe
cdrtools
# network related
sshuttle
pciutils
2017-03-01 14:45:50 +00:00
];
}