2021-08-06 23:33:19 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2019-09-30 09:11:36 +02:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.fish = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
functions = { };
|
|
|
|
};
|
|
|
|
|
2021-08-06 23:33:19 +02:00
|
|
|
# Needed to avoid error with dummy fish package.
|
|
|
|
xdg.dataFile."fish/home-manager_generated_completions".source =
|
|
|
|
lib.mkForce (builtins.toFile "empty" "");
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs.fish = { };
|
2021-08-06 23:33:19 +02:00
|
|
|
|
2019-09-30 09:11:36 +02:00
|
|
|
nmt = {
|
|
|
|
description =
|
|
|
|
"if fish.functions is blank, the functions folder should not exist.";
|
|
|
|
script = ''
|
|
|
|
assertPathNotExists home-files/.config/fish/functions
|
|
|
|
'';
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|