mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
fish: use dummy fish package in tests
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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.";
|
||||
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user