nix-config/modules/home-manager/terminal/zellij/zellij.nix

11 lines
142 B
Nix
Raw Normal View History

2024-03-24 17:39:49 -05:00
{
config,
pkgs,
...
}: {
programs.zellij.enable = true;
home.file = {
".config/zellij/config.kdl".source = ./config.kdl;
};
}