This commit is contained in:
XenGi 2025-12-30 12:32:01 +01:00
parent 9cbb528c2d
commit e61be4a176
No known key found for this signature in database
8 changed files with 181 additions and 16 deletions

21
hosts/kaede/programs.nix Normal file
View file

@ -0,0 +1,21 @@
{ ... }:
{
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;
};
};
}