dotfiles/modules/home-manager/zellij.nix

12 lines
161 B
Nix
Raw Normal View History

{ self, ... }:
2024-08-24 22:36:39 +00:00
{
programs.zellij = {
enable = true;
};
xdg.configFile."zellij" = {
source = "${self}/config/zellij";
recursive = true;
};
2024-08-24 22:36:39 +00:00
}