23 lines
373 B
Nix
23 lines
373 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
zjstatus
|
|
];
|
|
programs.zellij = {
|
|
# This autostarts zellij on zsh start
|
|
# TODO find specific settings for vscode to avoid
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
|
|
home.file = {
|
|
"zellij" = {
|
|
source = ./zellij.kdl;
|
|
target = ".config/zellij/config.kdl";
|
|
};
|
|
};
|
|
}
|