summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/tools/dev.nix
blob: ac6d91e8596d2b498c3c6e61c8091e9e72300972 (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
44
{ 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 # broken

    # 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
  ];
}