iac/hosts/kaede/programs.nix
2025-12-30 12:32:01 +01:00

21 lines
344 B
Nix

{ ... }:
{
programs = {
fish.enable = true;
vim = {
enable = true;
defaultEditor = true;
};
tmux = {
enable = true;
terminal = "screen-256color";
shortcut = "a";
plugins = with pkgs.tmuxPlugins; [];
newSession = true;
historyLimit = 10000;
clock24 = true;
};
};
}