mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
13 lines
335 B
Nix
13 lines
335 B
Nix
{
|
|
programs.bash.enable = true;
|
|
programs.goto.enable = true;
|
|
programs.zsh.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.bashrc
|
|
assertFileRegex home-files/.bashrc '^source \S*/share/goto.sh$'
|
|
assertFileExists home-files/.zshrc
|
|
assertFileRegex home-files/.zshrc '^source \S*/share/goto.sh$'
|
|
'';
|
|
}
|