1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 04:43:28 +02:00
home-manager/tests/modules/programs/scmpuff/no-fish.nix

22 lines
433 B
Nix
Raw Normal View History

{ lib, ... }:
{
2022-08-22 11:38:58 +02:00
programs = {
scmpuff = {
enable = true;
enableFishIntegration = false;
};
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.scmpuff = { };
nmt.script = ''
assertFileNotRegex home-files/.config/fish/config.fish '@scmpuff@'
'';
}