-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.nix
63 lines (62 loc) · 1.14 KB
/
config.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
# ~/.nixpkgs/config.nix
{
allowBroken = true;
packageOverrides = pkgs_: with pkgs_; { # pkgs_ is the original set of packages
all = with pkgs; buildEnv { # pkgs is your overriden set of packages itself
name = "all";
paths = [
python
ruby
emacs
git
go
watchman
# apparix
# nq
# jq
python27Packages.httplib2
python27Packages.howdoi
python27Packages.pygments
python27Packages.pyyaml
php70
php70Packages.composer
vagrant
# isync
python27Packages.boto
peco
less
chromium
global
recoll
youtube-dl
rxvt_unicode
ag
sqlite # Required by helm-dash
grc
cheat
mosh
exa
ffmpeg
pass
xclip
tomb
file
python27Packages.upass
gnupg1
screen
mplayer
nodejs
fd
sshfs-fuse
openssl
icdiff
ripgrep
nix-index
anki
dmidecode
p7zip
wxhexeditor
];
};
};
}