blob: 8157c8a220a13c7a31e8c45d0d5fdfc2c98b8436 (
plain)
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
|
{ config
, pkgs
, theme
, self
, ...
}:
{
imports = [
./bash.nix
./chromium.nix
./feh.nix
./fzf.nix
./git.nix
./htop.nix
./neovim.nix
./readline.nix
./tmux.nix
./zathura.nix
];
programs = {
msmtp.enable = true;
home-manager.enable = true;
mbsync.enable = true;
direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv = {
enable = true;
enableFlakes = true;
};
};
autojump = {
enable = true;
enableBashIntegration = true;
};
password-store = {
enable = true;
settings = {
PASSWORD_STORE_DIR = ''$HOME/.password-store'';
PASSWORD_STORE_KEY = "21532E14CF0840E438C36DED7164B95E9556624A";
PASSWORD_STORE_CLIP_TIME = "60";
};
};
nix-index = {
enable = true;
enableBashIntegration = true;
};
gpg.enable = true;
info.enable = true;
};
}
|