-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.nix
83 lines (77 loc) · 1.59 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{ config, lib, pkgs, ... }: {
# Allow unfree
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
};
};
# Automatically update nix channels
system.autoUpgrade.enable = true;
nix = {
settings = {
auto-optimise-store = true;
};
# Automatically clean nixos build entries
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
};
# Overlays
nixpkgs.overlays = [];
home-manager.users.${config.user.name} = {
xdg.configFile.nixpkgs = {
target = "nixpkgs/config.nix";
source = ./nixpkgs.nix;
};
home.packages = with pkgs; [
qdigidoc
vmware-horizon-client
neofetch
sl
arandr
pavucontrol # Audio control
pocket-casts # Podcasts
spotify
vlc # Media Player
glow # Readme reader
bitwarden # Password manager
simple-scan # Scan
okular # PDF viewer
gnome.file-roller # Archive Manager
pcmanfm # File Manager
rsync # Syncer $ rsync -r dir1/ dir2/
unzip zip # Zip files
unrar # Rar files
xclip
# playerctl
# pulseaudio
qpwgraph
killall
youtube-dl
ripgrep
procs
fd
sd
inetutils
discord
slack
tmatrix
insomnia
dbeaver
mongodb-compass
protonvpn-gui
kdenlive
ranger
drawio
gh
just
tdesktop
pup
];
};
}