switch from tmux to zellij

This commit is contained in:
Anthony Rodriguez 2024-08-26 19:49:06 +02:00
parent 57536bcfbc
commit 2475be407d
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
3 changed files with 9 additions and 2 deletions

View file

@ -25,7 +25,6 @@
visibleName = "nezia"; visibleName = "nezia";
default = true; default = true;
audibleBell = false; audibleBell = false;
customCommand = "tmux new -A -s main";
font = "MonaspiceNe Nerd Font 14"; font = "MonaspiceNe Nerd Font 14";
}; };
}; };

View file

@ -5,7 +5,7 @@
./git.nix ./git.nix
./gnupg.nix ./gnupg.nix
./nixvim ./nixvim
./tmux.nix ./zellij.nix
./browsers.nix ./browsers.nix
./miscellaneous.nix ./miscellaneous.nix
]; ];

View file

@ -0,0 +1,8 @@
{ ... }:
{
programs.zellij = {
enable = true;
enableFishIntegration = true;
};
}