iac/hosts/kaede/programs.nix
XenGi 78c6c5b26b 🔥
2026-01-27 18:48:29 +01:00

31 lines
602 B
Nix

{ pkgs, ... }:
{
programs = {
fish.enable = true;
vim = {
enable = true;
defaultEditor = true;
};
htop = {
enable = true;
settings = {
highlight_base_name = true;
show_cpu_frequency = true;
show_cpu_temperature = true;
update_process_names = true;
color_scheme = "6";
};
};
tmux = {
enable = true;
terminal = "screen-256color";
shortcut = "a";
plugins = with pkgs.tmuxPlugins; [ sensible ];
newSession = true;
historyLimit = 10000;
clock24 = true;
};
};
}