2025-01-31 21:24:47 +01:00
|
|
|
{
|
2024-12-16 10:17:54 +00:00
|
|
|
programs = {
|
|
|
|
pay-respects.enable = true;
|
|
|
|
bash.enable = true;
|
|
|
|
zsh.enable = true;
|
|
|
|
fish.enable = true;
|
|
|
|
nushell.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.bashrc
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.bashrc \
|
2025-01-31 21:24:47 +01:00
|
|
|
'eval "$(@pay-respects@/bin/pay-respects bash --alias)"'
|
2024-12-16 10:17:54 +00:00
|
|
|
|
|
|
|
assertFileExists home-files/.zshrc
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.zshrc \
|
2025-01-31 21:24:47 +01:00
|
|
|
'eval "$(@pay-respects@/bin/pay-respects zsh --alias)"'
|
2024-12-16 10:17:54 +00:00
|
|
|
|
|
|
|
assertFileExists home-files/.config/fish/config.fish
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.config/fish/config.fish \
|
2025-01-31 21:24:47 +01:00
|
|
|
'@pay-respects@/bin/pay-respects fish --alias | source'
|
2024-12-16 10:17:54 +00:00
|
|
|
|
|
|
|
assertFileExists home-files/.config/nushell/config.nu
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.config/nushell/config.nu \
|
2025-01-31 21:24:47 +01:00
|
|
|
'@pay-respects@/bin/pay-respects nushell --alias [<alias>]'
|
2024-12-16 10:17:54 +00:00
|
|
|
'';
|
|
|
|
}
|