mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 11:19:44 +01:00
26 lines
516 B
Nix
26 lines
516 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 = { };
|
||
|
bash-preexec = { };
|
||
|
fish = { };
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/fish/config.fish
|
||
|
assertFileContains \
|
||
|
home-files/.config/fish/config.fish \
|
||
|
'atuin init fish | source'
|
||
|
'';
|
||
|
}
|