Bruno BELANYI
742b4c39a2
There are other terminal capabilities I want to override in tmux, so let's make this type more extensible.
21 lines
442 B
Nix
21 lines
442 B
Nix
{ ... }:
|
|
{
|
|
my.home = {
|
|
nix = {
|
|
cache = {
|
|
# This server is the one serving the cache, don't try to query it
|
|
selfHosted = false;
|
|
};
|
|
};
|
|
|
|
# Allow using extended features when SSH-ing from various clients
|
|
tmux.terminalFeatures = {
|
|
# My usual terminal, e.g: on laptop
|
|
alacritty = { };
|
|
};
|
|
|
|
# Always start a tmux session when opening a shell session
|
|
zsh.launchTmux = true;
|
|
};
|
|
}
|