pantheon/modules/programs/zellij.nix
2025-04-07 14:16:26 +08:00

27 lines
583 B
Nix

{
home-manager.users.rafiq = {
programs.zellij = {
enable = true;
attachExistingSession = true;
settings = {
show_startup_tips = false;
pane_frames = false;
keybinds.unbind = [
"Ctrl h"
];
};
};
xdg.configFile."zellij/layouts/default.kdl".text = # kdl
''
layout {
pane
pane size=1 borderless=true {
plugin location="tab-bar"
}
pane size=1 borderless=true {
plugin location="status-bar"
}
}
'';
};
}