-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.nix
96 lines (81 loc) · 1.94 KB
/
common.nix
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
{ pkgs, lib, ... }:
with pkgs;
{
home.packages = with pkgs; [
bat # cat clone with syntax highlighting and git integration
bc # cli calculator
du-dust # rust modern clone of du
fd # find entries in filesystem
fortune
htop
httpie
jq
killall
magic-wormhole # simple secure file transfer
mosh # ssh alternative
nix-index
nix-prefetch-git
nix-zsh-completions
obsidian # note taking
pandoc # document converter
ranger # CLI file manager
ripgrep
shared-mime-info # recognize file types
tealdeer # tldr for various shell tools
translate-shell
units
# xarchiver
# graphics / print
imagemagick
# programming - general
exercism
foreman
gnumake
html-tidy # format html
niv # nix channel config
sourceHighlight
shellcheck # shell script analyzer
tig # git tui frontend
universal-ctags
# programming - elixir / erlang
elixir
# programming - javascript
nodejs
nodePackages.diagnostic-languageserver
nodePackages.eslint_d
nodePackages.typescript
nodePackages.typescript-language-server
# programming - haskell
ghc
cabal2nix
cabal-install
haskellPackages.apply-refact
haskellPackages.ghcid
haskellPackages.haskell-language-server
haskellPackages.hlint
haskellPackages.yesod
# programming - python
python3Packages.pynvim # for neovim
# programming - ruby
bundix
jekyll
ruby_3_2
rubyPackages_3_2.pry
# programming - rust
cargo
rustc
rustfmt
# chat / email
neomutt # CLI mail
# protonmail-bridge
weechat
# fonts
fira
fira-code
fira-code-symbols
font-awesome
jetbrains-mono
# media
ncmpcpp
];
}