blob: d5a5f6e7fc71db5e08e06bc57df63001e4fec55f (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
{ pkgs, ... }:
# All common packages go here. Linux-specific should go in `linux.nix'
with pkgs;
let
#urwid-readline = python3.pkgs.buildPythonPackage rec {
# pname = "urwid_readline";
# version = "0.13";
# src = python3.pkgs.fetchPypi {
# inherit pname version;
# sha256 = "1x7s3vnvvhxad72skwr9rdajgbly0rmw4zg1ggc5xfv4r35j1001";
# };
# propagatedBuildInputs = [ python3Packages.urwid ];
# doCheck = false;
#};
#zulip-terminal = python3.pkgs.buildPythonApplication rec {
# pname = "zulip-terminal";
# version = "0.6.0";
# src = pkgs.fetchFromGitHub {
# owner = "zulip";
# repo = pname;
# rev = "${version}";
# sha256 = "0nah8dxgzv2q2gnkzlbc2sm68b1mlgsw8izny2p10i8mcdldjnwy";
# };
# propagatedBuildInputs = with python3Packages; [
# urwid
# zulip
# urwid-readline
# beautifulsoup4
# lxml
# pygments
# typing-extensions
# dateutil
# pytz
# tzlocal
# pyperclip
# ];
# doCheck = false;
#};
in {
home.packages = [
amfora
ansifilter
asciinema
aspellDicts.en
bat
barrier
bc
cava
chafa
cloc
direnv
entr
eternal-terminal
expect
#exercism
fd
file
fira-code
#fira-code-nerdfont
font-awesome_5
forgit
gcal
git-branchless
git-lfs
git-revise
github-cli
gotop
hashcash
httpstat
inetutils
ispell
jq
lsof
mpc_cli
nb
ncdu
nmap
ncmpc
nerdfonts
nix-index
nix-prefetch-scripts
nixos-generators
noto-fonts-emoji
opentimestamps-client
paperkey
pass
pciutils
pianobar
pup
pv
python3
qrencode
ranger
ripgrep
scc
sshfs
sysz
tailscale
tmux
tree
unrar
unzip
urlscan
w3m
zeal
zebra
zip
];
}
|