mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
14 lines
258 B
Nix
14 lines
258 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
carapace.enable = true;
|
|
zsh.enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.zshrc
|
|
assertFileRegex home-files/.zshrc \
|
|
'source <(/nix/store/.*carapace.*/bin/carapace _carapace zsh)'
|
|
'';
|
|
}
|