c6444ecc3c
GitOrigin-RevId: 51e44a13acea71b36245e8bd8c7db53e0a3e61ee
20 lines
489 B
Nix
20 lines
489 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
thefuck.enable = true;
|
|
thefuck.enableBashIntegration = false;
|
|
thefuck.enableFishIntegration = false;
|
|
thefuck.enableZshIntegration = false;
|
|
bash.enable = true;
|
|
zsh.enable = true;
|
|
};
|
|
|
|
test.stubs.thefuck = { };
|
|
|
|
nmt.script = ''
|
|
assertFileNotRegex home-files/.bashrc '@thefuck@/bin/thefuck'
|
|
assertPathNotExists home-files/.config/fish/functions/fuck.fish
|
|
assertFileNotRegex home-files/.zshrc '@thefuck@/bin/thefuck'
|
|
'';
|
|
}
|