mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
24 lines
528 B
Nix
24 lines
528 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
programs = {
|
|
atuin.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 = ''
|
|
assertFileExists home-files/.config/fish/config.fish
|
|
assertFileContains \
|
|
home-files/.config/fish/config.fish \
|
|
'@atuin@/bin/atuin init fish | source'
|
|
'';
|
|
}
|