blob: 23da9d5776843f75fab9c5ca023ae5600d4cc5d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{ pkgs, ... }:
{
users.users.makefu.packages = with pkgs;[
(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
]))
picocom
python3.pkgs.pyserial
python3.pkgs.virtualenv
# embedded
gi
flashrom
mosquitto
libcoap
nodemcu-uploader
esptool
cac-api
cac-panel
krebszones
ovh-zone
whatsupnix
brain
gen-oath-safe
cdrtools
# nix related
nix-index
nix-review
# git-related
tig
(pkgs.callPackage ./init-host {})
];
}
|