Add the Zellij default configuration

Used `zellij setup --dump-config` to get the configuration and saved it
into its own file.
This commit is contained in:
Oliver Davies 2024-08-29 06:55:57 +01:00
parent 4406690f63
commit 9f4e5bebf8
2 changed files with 393 additions and 4 deletions
lib/shared/modules

View file

@ -1,10 +1,11 @@
{ self, ... }:
{
programs.zellij = {
enable = true;
};
xdg.configFile."zellij/config.kdl".text = ''
simplified_ui true
theme "catppuccin-mocha"
'';
xdg.configFile."zellij" = {
source = "${self}/config/zellij";
recursive = true;
};
}