feat: some tmux configuration

This commit is contained in:
dprin 2026-03-28 09:57:34 +01:00
parent e3580500ac
commit e2fab632ef
5 changed files with 23 additions and 4 deletions

View file

@ -3,5 +3,6 @@
imports = [
./fish.nix
./nginx.nix
./tmux.nix
];
}

10
modules/tmux.nix Normal file
View file

@ -0,0 +1,10 @@
{...}:
{
home-manager.users.perver = {
programs.tmux = {
enable = true;
newSession = true;
shell = "fish";
};
};
}