1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 21:03:27 +02:00
home-manager/tests/modules/programs/fish/no-functions.nix

29 lines
543 B
Nix
Raw Normal View History

2021-08-06 23:33:19 +02:00
{ config, lib, pkgs, ... }:
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" "");
test.stubs.fish = { };
2021-08-06 23:33:19 +02:00
nmt = {
description =
"if fish.functions is blank, the functions folder should not exist.";
script = ''
assertPathNotExists home-files/.config/fish/functions
'';
};
};
}