update flake, add tmux
Some checks failed
Update Nix Flake / update-flake (push) Failing after 14s

This commit is contained in:
2025-11-25 20:12:55 +01:00
parent bc160af26a
commit fd3b9f20f0
3 changed files with 29 additions and 15 deletions

View File

@@ -11,6 +11,7 @@
./features/alacritty
./features/yazi
./features/emacs
./features/tmux
./features/hyprland

View File

@@ -0,0 +1,13 @@
{
lib,
pkgs,
config,
...
}: {
programs.tmux = {
enable = true;
clock24 = true;
keyMode = "vi";
mouse = true;
};
}