blob: b22b24871d660961582512fc0ec68019506f6388 (
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
|
{
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.gcc
pkgs.gnome-screenshot
(pkgs.gajim.overrideAttrs (super: {buildInputs = super.buildInputs ++ [pkgs.gsound];}))
pkgs.gnucash
pkgs.gruvbox-dark-icons-gtk
pkgs.nerd-fonts.hack
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
];
};
}
|