blob: 2acdcf69c5f3d3f2008502771464480ffdad4965 (
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
37
38
39
40
41
42
43
|
{ 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 ps.pyserial ps.virtualenv
]))
# embedded
picocom
gi
flashrom
mosquitto
esphome
# nix related
nix-index
nix-review
brain
whatsupnix
nixpkgs-pytools
hydra-check
# git-related
git-preview
tig
(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
navi
];
}
|