nix-config/lib/shared/modules/zellij.nix

12 lines
161 B
Nix
Raw Normal View History

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