summaryrefslogtreecommitdiff
path: root/home/environ/path.nix
blob: 9fc0a94c90300c76c9ebabaa0cc1e9d4e4038f52 (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
45
46
47
48
49
50
51
52
53
54
55
{
  config,
  lib,
  pkgs,
  ...
}:
with lib; let
  cfg = config.local.environ;

  py = pkgs.python3Packages;
in {
  config = mkIf cfg.enable {
    home.packages = [
      pkgs.calc
      pkgs.cloc
      pkgs.diceware
      pkgs.local.athena-bccr.latest.firmador
      pkgs.gcc
      pkgs.gnome-screenshot
      (pkgs.gajim.overrideAttrs (super: {buildInputs = super.buildInputs ++ [pkgs.gsound];}))
      (pkgs.local.athena-bccr.latest.gaudi.override {gaudiHash = "sha256-0nuku63USr5rC0rIwUC6toDN46qu8/KkezDTsVz9uJo=";})
      pkgs.gnucash
      pkgs.gruvbox-dark-icons-gtk
      pkgs.hack-font
      pkgs.i3-gaps
      pkgs.imagemagick
      py.ipython
      pkgs.jq
      pkgs.libreoffice-fresh
      pkgs.loupe # 'gpicview' has been removed due to lack of maintenance upstream
      pkgs.lsof
      pkgs.mosh
      pkgs.mpv
      pkgs.libsForQt5.okular
      pkgs.pavucontrol
      pkgs.pciutils
      py.python
      pkgs.pv
      pkgs.rustup
      pkgs.local.scripts
      pkgs.local.st
      pkgs.tdesktop
      pkgs.local.tmux-lift
      pkgs.tomb
      pkgs.units
      pkgs.usbutils
      pkgs.waypipe
      pkgs.wl-clipboard
      pkgs.xsel
      pkgs.xournalpp
      pkgs.yubikey-manager
      pkgs.zoom-us
    ];
  };
}