2023-02-22 17:05:28 +01:00
|
|
|
{ ... }:
|
|
|
|
{
|
2023-02-22 17:09:15 +01:00
|
|
|
my.home = {
|
2024-03-01 18:20:44 +01:00
|
|
|
nix = {
|
|
|
|
cache = {
|
|
|
|
# This server is the one serving the cache, don't try to query it
|
|
|
|
selfHosted = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-03-07 16:42:58 +01:00
|
|
|
# Allow using extended features when SSH-ing from various clients
|
|
|
|
tmux.terminalFeatures = {
|
2023-10-30 14:33:27 +01:00
|
|
|
# My usual terminal, e.g: on laptop
|
2024-03-07 16:42:58 +01:00
|
|
|
alacritty = { };
|
|
|
|
};
|
2023-10-30 14:33:27 +01:00
|
|
|
|
2023-02-22 17:09:15 +01:00
|
|
|
# Always start a tmux session when opening a shell session
|
|
|
|
zsh.launchTmux = true;
|
|
|
|
};
|
2023-02-22 17:05:28 +01:00
|
|
|
}
|