dots/hosts/orion/modules/programs.nix
Price Hiller 6e2c2a6c46
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
feat(host/orion): enable bash completion in zsh
2024-07-19 00:48:22 -05:00

13 lines
190 B
Nix

{ ... }:
{
programs = {
dconf.enable = true;
zsh = {
enable = true;
enableCompletion = true;
enableBashCompletion = true;
};
nix-ld.enable = true;
};
}