dotfiles/lib/shared/modules/zellij.nix
Oliver Davies 9f4e5bebf8 Add the Zellij default configuration
Used `zellij setup --dump-config` to get the configuration and saved it
into its own file.
2024-08-29 09:44:59 +01:00

12 lines
161 B
Nix

{ self, ... }:
{
programs.zellij = {
enable = true;
};
xdg.configFile."zellij" = {
source = "${self}/config/zellij";
recursive = true;
};
}