10 lines
221 B
Nix
10 lines
221 B
Nix
{lib, ...}: {
|
|
programs.zellij = {
|
|
# This autostarts zellij on zsh start
|
|
# TODO find specific settings for vscode to avoid
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
catppuccin.enable = true;
|
|
};
|
|
}
|