remove zellij-switch

This commit is contained in:
Noah Masur
2026-09-07 11:17:39 -04:00
parent 7f8400ff58
commit db49e746b8
@@ -41,8 +41,6 @@ in
config = lib.mkIf cfg.enable {
home.packages = [ pkgs.zellij-switch ];
programs.fish = {
shellAbbrs.z = "zellij";
functions = {
@@ -170,7 +168,9 @@ in
keybinds = {
locked = lib.mkIf (pkgs.stdenv.hostPlatform.isLinux && !config.programs.ghostty.enable) {
# For servers that I SSH into, use c-a-G to unlock
"bind \"Ctrl Alt G\"" = lib.mkIf (pkgs.stdenv.hostPlatform.isLinux && !config.programs.ghostty.enable) {
"bind \"Ctrl Alt G\"" =
lib.mkIf (pkgs.stdenv.hostPlatform.isLinux && !config.programs.ghostty.enable)
{
SwitchToMode = {
_args = [ "normal" ];
};
@@ -178,7 +178,9 @@ in
};
normal = lib.mkIf (pkgs.stdenv.hostPlatform.isLinux && !config.programs.ghostty.enable) {
# For servers that I SSH into, use c-a-G to lock
"bind \"Ctrl Alt G\"" = lib.mkIf (pkgs.stdenv.hostPlatform.isLinux && !config.programs.ghostty.enable) {
"bind \"Ctrl Alt G\"" =
lib.mkIf (pkgs.stdenv.hostPlatform.isLinux && !config.programs.ghostty.enable)
{
SwitchToMode = {
_args = [ "locked" ];
};