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;
|
|
|
|
bash.enable = true;
|
|
|
|
zsh.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
test.stubs.thefuck = { };
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileNotRegex home-files/.bashrc '@thefuck@/bin/thefuck'
|
2023-11-03 16:33:15 +01:00
|
|
|
assertFileNotExists home-files/.config/fish/functions/fuck.fish
|
2023-10-01 16:41:55 +02:00
|
|
|
assertFileNotRegex home-files/.zshrc '@thefuck@/bin/thefuck'
|
|
|
|
'';
|
|
|
|
}
|