blob: 9b0b353bd953a4865d2e3575c8e35a2a460efa15 (
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
|
{ config, pkgs, ... }:
{
imports = [ ./common.nix ];
home.packages = with pkgs; [
emacs-nox
irssi
libtree
msmtp
neomutt
pinentry
restic
sword
yt-dlp
];
services.gpg-agent = {
enable = true;
pinentryPackage = pkgs.pinentry-curses;
defaultCacheTtl = 34560000;
maxCacheTtl = 34560000;
};
programs.tmux = {
enable = true;
terminal = "screen-256color";
prefix = "C-a";
#tmuxp.enable = true;
extraConfig = ''
unbind-key R
bind-key R run-shell ' \
tmux source-file ~/.config/tmux/tmux.conf > /dev/null; \
tmux display-message "Sourced .config/tmux/tmux.conf!"'
bind-key C-a last-window
bind-key a send-prefix
set -g status-bg black
set -g status-fg white
setw -g window-status-current-format "#[fg=red,bold][#[fg=default]#F#I:#W#F#[fg=red,bold]]#[default]"
setw -g window-status-format "#[fg=green]{#[default]#F#I:#W#F#[fg=green]}#[default]"
set -g status-left-length 17
set -g status-interval 1
set -g status-left "#[fg=yellow]#h#[default]"
set -g status-right "#[fg=blue]%a%d/%m#[fg=yellow]#(TZ="Europe/London" date +%%H:%%M:%%S)"
'';
};
programs.vim.packageConfigurable = pkgs.vim;
}
|