NixOS-Config/home-manager/shared/shell/zellij.nix

23 lines
373 B
Nix
Raw Normal View History

2024-05-02 11:21:29 +02:00
{
lib,
pkgs,
...
}: {
home.packages = with pkgs; [
zjstatus
];
2024-04-29 20:06:28 +02:00
programs.zellij = {
# This autostarts zellij on zsh start
# TODO find specific settings for vscode to avoid
2024-04-29 20:37:48 +02:00
enable = true;
2024-04-29 20:06:28 +02:00
enableZshIntegration = true;
};
home.file = {
"zellij" = {
source = ./zellij.kdl;
target = ".config/zellij/config.kdl";
};
2024-04-29 20:06:28 +02:00
};
}