Files
nix-config-v2/home/zellij.nix
Wyatt J. Miller 109684d09c fixed zellij again?
don't trust ai to convert kdl to nix for you
2025-06-28 17:59:39 -04:00

15 lines
218 B
Nix

{
lib,
...
}: let
dirs = {
defaults = ../defaults;
};
in {
programs.zellij = {
enable = true;
};
xdg.configFile."zellij/config.kdl".source = lib.mkForce (dirs.defaults + zellij/config.kdl);
}