mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
30 lines
726 B
Nix
30 lines
726 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
programs = {
|
|
atuin = {
|
|
enable = true;
|
|
enableBashIntegration = false;
|
|
enableZshIntegration = false;
|
|
enableFishIntegration = false;
|
|
};
|
|
bash.enable = true;
|
|
zsh.enable = true;
|
|
fish.enable = true;
|
|
};
|
|
|
|
# Needed to avoid error with dummy fish package.
|
|
xdg.dataFile."fish/home-manager_generated_completions".source =
|
|
lib.mkForce (builtins.toFile "empty" "");
|
|
|
|
test.stubs = {
|
|
atuin = { name = "atuin"; };
|
|
bash-preexec = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileNotRegex home-files/.zshrc 'atuin init zsh'
|
|
assertFileNotRegex home-files/.bashrc 'atuin init bash'
|
|
assertFileNotRegex home-files/.config/fish/config.fish 'atuin init fish'
|
|
'';
|
|
}
|