13 lines
210 B
Nix
13 lines
210 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.zellij = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
settings = {
|
|
theme = "dracula";
|
|
copy_on_select = true;
|
|
show_startup_tips = false;
|
|
};
|
|
};
|
|
}
|