1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 09:28:32 +02:00

info: add "info" to extra outputs to install

This commit is contained in:
Robert Helgesson 2017-10-15 16:03:35 +02:00
parent 3632478b8d
commit 0672936134
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86

View File

@ -24,6 +24,7 @@ with lib;
with import ../lib/dag.nix { inherit lib; };
let
cfg = config.programs.info;
# Indexes info files found in this location
@ -72,6 +73,8 @@ in
fi
'';
home.packages = [infoPkg];
home.packages = [ infoPkg ];
home.extraOutputsToInstall = [ "info" ];
};
}