nix/modules/home-manager/zellij.nix

16 lines
247 B
Nix
Raw Normal View History

2023-10-05 13:43:28 -05:00
{
programs.zellij = {
# TODO: enable after port config
enable = false;
enableFishIntegration = true;
settings = {
pane_frames = false;
# TODO: port config
};
};
home.shellAliases = {
z = "zellij";
};
}