blob: 575bef0b4ca2d1707480a1c6eb889a08223d10f9 (
plain) (
blame)
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
|
{pkgs, ...}: {
imports = [
./fzf.nix
./git.nix
./keychain.nix
./starship.nix
./tmux.nix
./zsh.nix
];
programs = {
atuin = {
enable = true;
settings = {
enter_accept = false;
};
flags = [
"--disable-up-arrow"
];
};
nix-index.enable = true;
zoxide = {
enable = true;
options = [
"--cmd cd"
];
};
};
home.packages = with pkgs; [
bat
btop
comma
dnsutils
dogdns
dua
duf
exfatprogs
eza
fd
fortune
gocryptfs
htop
inetutils
jnv
jq
iperf
lm_sensors
ncdu
nmap
ntfy-sh
nvd
pwgen
rclone
restic
ripgrep
sshfs
tldr
unzip
unrar
wget
wol
zip
zstd
];
}
|