1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-17 20:18:31 +02:00

fish: use dummy fish package in tests

This commit is contained in:
Robert Helgesson 2021-08-06 23:33:19 +02:00
parent d490797179
commit 29ea37374d
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
3 changed files with 22 additions and 1 deletions

View File

@ -30,6 +30,13 @@ in {
};
};
# Needed to avoid error with dummy fish package.
xdg.dataFile."fish/home-manager_generated_completions".source =
lib.mkForce (builtins.toFile "empty" "");
nixpkgs.overlays =
[ (self: super: { fish = pkgs.writeScriptBin "dummy" ""; }) ];
nmt = {
description =
"if fish.function is set, check file exists and contents match";

View File

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
with lib;
@ -10,6 +10,13 @@ with lib;
functions = { };
};
# Needed to avoid error with dummy fish package.
xdg.dataFile."fish/home-manager_generated_completions".source =
lib.mkForce (builtins.toFile "empty" "");
nixpkgs.overlays =
[ (self: super: { fish = pkgs.writeScriptBin "dummy" ""; }) ];
nmt = {
description =
"if fish.functions is blank, the functions folder should not exist.";

View File

@ -46,6 +46,13 @@ in {
}];
};
# Needed to avoid error with dummy fish package.
xdg.dataFile."fish/home-manager_generated_completions".source =
lib.mkForce (builtins.toFile "empty" "");
nixpkgs.overlays =
[ (self: super: { fish = pkgs.writeScriptBin "dummy" ""; }) ];
nmt = {
description =
"if fish.plugins set, check conf.d file exists and contents match";