2023-10-01 16:41:55 +02:00
|
|
|
{ ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
programs = {
|
|
|
|
thefuck.enable = true;
|
|
|
|
thefuck.enableBashIntegration = false;
|
2023-11-03 16:33:15 +01:00
|
|
|
thefuck.enableFishIntegration = false;
|
2023-10-01 16:41:55 +02:00
|
|
|
thefuck.enableZshIntegration = false;
|
2024-04-29 09:53:42 +02:00
|
|
|
thefuck.enableNushellIntegration = false;
|
2023-10-01 16:41:55 +02:00
|
|
|
bash.enable = true;
|
|
|
|
zsh.enable = true;
|
2024-04-29 09:53:42 +02:00
|
|
|
nushell.enable = true;
|
2023-10-01 16:41:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
test.stubs.thefuck = { };
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileNotRegex home-files/.bashrc '@thefuck@/bin/thefuck'
|
2023-12-20 22:33:36 +01:00
|
|
|
assertPathNotExists home-files/.config/fish/functions/fuck.fish
|
2023-10-01 16:41:55 +02:00
|
|
|
assertFileNotRegex home-files/.zshrc '@thefuck@/bin/thefuck'
|
2024-04-29 09:53:42 +02:00
|
|
|
assertFileNotRegex home-files/.config/nushell/config.nu '@thefuck@/bin/thefuck'
|
2023-10-01 16:41:55 +02:00
|
|
|
'';
|
|
|
|
}
|