mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
8a175a8913
Fixes tests that are affected by <https://github.com/NixOS/nixpkgs/pull/333744>.
26 lines
560 B
Nix
26 lines
560 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
thefuck = {
|
|
enable = true;
|
|
enableInstantMode = true;
|
|
};
|
|
bash.enable = true;
|
|
zsh.enable = true;
|
|
};
|
|
|
|
test.stubs.thefuck = { };
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.bashrc
|
|
assertFileContains \
|
|
home-files/.bashrc \
|
|
'eval "$(@thefuck@/bin/thefuck --alias --enable-experimental-instant-mode)"'
|
|
|
|
assertFileExists home-files/.zshrc
|
|
assertFileContains \
|
|
home-files/.zshrc \
|
|
'eval "$(@thefuck@/bin/thefuck --alias --enable-experimental-instant-mode)"'
|
|
'';
|
|
}
|