nix-config/hosts/nixos/porthos/home.nix
Bruno BELANYI 56c0c28b02
All checks were successful
ci/woodpecker/push/check Pipeline was successful
hosts: nixos: porthos: home: disable cache
Same reason as the system-wide configuration...
2024-03-01 17:20:47 +00:00

21 lines
433 B
Nix

{ ... }:
{
my.home = {
nix = {
cache = {
# This server is the one serving the cache, don't try to query it
selfHosted = false;
};
};
# Allow using 24bit color when SSH-ing from various clients
tmux.trueColorTerminals = [
# My usual terminal, e.g: on laptop
"alacritty"
];
# Always start a tmux session when opening a shell session
zsh.launchTmux = true;
};
}