nixos/modules/homes/zsh/completion.nix

18 lines
234 B
Nix

{
config,
lib,
...
}:
with lib;
let
cfg = config.modules.zsh;
xdgCfg = config.xdg;
in
{
config = mkIf cfg.enable {
home.file."${xdgCfg.configHome}/zsh/completion.zsh" = {
source = ./completion.zsh;
};
};
}