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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
{
flake,
username,
email,
config,
pkgs,
...
}: {
home.homeDirectory = "/home/${username}";
home.username = username;
home.stateVersion = "23.05";
programs.home-manager.enable = true;
home.sessionVariables = {
EDITOR = "nvim";
};
home.sessionPath = [
"${config.home.homeDirectory}/.krew/bin"
"${config.home.homeDirectory}/.cargo/bin"
"${pkgs.ncurses}/bin"
];
programs.starship.enable = false;
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
programs.readline = {
enable = true;
extraConfig = ''
set editing-mode vi
$if mode=vi
set keymap vi-command
# these are for vi-command mode
Control-l: clear-screen
set keymap vi-insert
# these are for vi-insert mode
Control-l: clear-screen
$endif
'';
};
programs.tmux = {
enable = true;
extraConfig = ''
set-option -g default-shell ${pkgs.bashInteractive}/bin/bash
set -s set-clipboard on
set -g default-terminal "xterm-256color"
set-option -sa terminal-overrides ",xterm-256color:RGB"
set-option -g focus-events on
set-option -sg escape-time 10
bind-key -n C-s copy-mode
set-window-option -g mode-keys vi
bind-key -T copy-mode-vi v send -X begin-selection
bind-key -T copy-mode-vi V send -X select-line
bind-key -T copy-mode-vi y send -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
bind-key -T copy-mode-vi : command-prompt
set -s command-alias[0] sp='splitw "kak -c \"$(tmux display-message -p \"#{window_name}\")\" || ${pkgs.bashInteractive}/bin/bash"'
set-hook -g pane-focus-in 'run-shell "[[ \"$(tmux display-message -p #{pane_in_mode})\" -eq 0 ]] || tmux send-keys -X cancel"'
bind-key -T copy-mode-vi C-w switch-client -T splits
bind-key -T splits j send -X cancel\; select-pane -t '{down-of}'
bind-key -T splits k send -X cancel\; select-pane -t '{up-of}'
bind-key -T splits h send -X cancel\; select-pane -t '{left-of}'
bind-key -T splits l send -X cancel\; select-pane -t '{right-of}'
'';
};
programs.bash = {
enable = true;
bashrcExtra = ''
unset LD_PRELOAD
if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then
. '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh'
fi
# include nix.sh if it exists
[[ -f ~/.nix-profile/etc/profile.d/nix.sh ]] && . ~/.nix-profile/etc/profile.d/nix.sh
# source some workspace specific stuff
[[ -f ~/env.sh ]] && . ~/env.sh
export COLORTERM=truecolor
'';
shellAliases = {
k9s = "k9s";
k = "kubectl ";
d = "docker ";
ls = "ls --color=auto";
s = "sudo nixos-rebuild switch --flake ${config.home.homeDirectory}/flake#";
b = "/run/current-system/bin/switch-to-configuration boot";
h = "home-manager switch --flake ${config.home.homeDirectory}/flake#mvinkio --impure";
fa = "azdo-switch-project";
v = "nvim";
V = "nvim -S .vimsession.vim";
M = "xrandr --output HDMI1 --auto --output eDP1 --off";
m = "xrandr --output eDP1 --auto --output HDMI1 --off";
mM = "xrandr --output eDP1 --auto --output HDMI1 --off";
newflake = "nix flake new -t ~/flake ";
ansible-flake = "nix flake new -t ~/flake#ansible ";
go-flake = "nix flake new -t ~/flake#go ";
lock-pass = "gpgconf --kill gpg-agent";
};
};
programs.git = {
enable = true;
userName = "Mike Vink";
userEmail = email;
extraConfig = {
worktree.guessRemote = true;
};
ignores = [
"/.direnv/"
"/.envrc"
"/.env"
".vimsession.vim"
];
};
programs.gpg = {
enable = true;
};
services.gpg-agent = {
enable = true;
defaultCacheTtl = 34560000;
maxCacheTtl = 34560000;
};
programs.password-store = {
enable = true;
};
xsession = {
enable = true;
initExtra = ''
${pkgs.xorg.xmodmap}/bin/xmodmap -e "remove mod1 = Alt_R"
${pkgs.xorg.xmodmap}/bin/xmodmap -e "add mod3 = Alt_R"
'';
windowManager.spectrwm = {
enable = true;
programs = {
term = "st";
search = "dmenu -ip -p 'Window name/id:'";
browser = "firefox";
lock = "slock";
};
bindings = {
lock = "Mod+s";
browser = "Mod+w";
term = "Mod+Return";
restart = "Mod+Shift+r";
quit = "Mod+Shift+q";
};
settings = {
modkey = "Mod4";
workspace_limit = 5;
focus_mode = "manual";
focus_close = "next";
bar_action = "spectrwmbar";
bar_action_expand = 1;
bar_font_color = "grey, white, rgb:00/00/ff, rgb:ee/82/ee, rgb:4b/00/82, rgb:00/80/00, rgb:ff/ff/00, rgb:ff/a5/00, rgb:eb/40/34";
};
};
};
}
|