mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
15 lines
262 B
Nix
15 lines
262 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
programs = {
|
||
|
carapace.enable = true;
|
||
|
bash.enable = true;
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.bashrc
|
||
|
assertFileRegex home-files/.bashrc \
|
||
|
'source <(/nix/store/.*carapace.*/bin/carapace _carapace bash)'
|
||
|
'';
|
||
|
}
|