1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 20:43:34 +02:00
home-manager/tests/modules/programs/scmpuff/no-fish.nix

21 lines
463 B
Nix
Raw Normal View History

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