mirror of
https://github.com/nix-community/home-manager
synced 2024-12-24 18:59:47 +01:00
fish: set tmp $HOME to silence errors
This commit is contained in:
parent
3ad22341a2
commit
e70550577f
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ let
|
||||||
nativeBuildInputs = [ cfg.package ];
|
nativeBuildInputs = [ cfg.package ];
|
||||||
inherit text;
|
inherit text;
|
||||||
passAsFile = [ "text" ];
|
passAsFile = [ "text" ];
|
||||||
} "fish_indent < $textPath > $out";
|
} "env HOME=$(mktemp -d) fish_indent < $textPath > $out";
|
||||||
|
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
|
|
Loading…
Reference in a new issue