-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.nix
69 lines (62 loc) · 1.35 KB
/
packages.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
{ pkgs, ... }:
with pkgs; [
gcc
unixtools.top
htop
file
ncdu
unzip
xz
wget
curl
git
vim
xclip
xorg.xkill
# Nix
nixos-shell # visualization
nvd # diff build versions
nil # Nix language server
comma # Run software without installing it https://github.com/nix-community/comma
lazygit
delta # diff tool
bat
jq
fd
ripgrep
ranger
lf
tmux
hugo # website framework for markdown
syncthing
syncthingtray
anki-bin
mpv # for audio in Anki
google-chrome
firefox
meld
spotify
vlc
slack
sublime4
sublime-merge
vscode
obsidian
transmission_4-qt
telegram-desktop
zoom-us
citrix_workspace
calibre
tor-browser
# # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
# # fonts?
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
# # You can also create simple shell scripts directly inside your
# # configuration. For example, this adds a command 'my-hello' to your
# # environment:
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
]