mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 05:29:46 +01:00
info: add "info" to extra outputs to install
This commit is contained in:
parent
3632478b8d
commit
0672936134
1 changed files with 4 additions and 1 deletions
|
@ -24,6 +24,7 @@ with lib;
|
||||||
with import ../lib/dag.nix { inherit lib; };
|
with import ../lib/dag.nix { inherit lib; };
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
cfg = config.programs.info;
|
cfg = config.programs.info;
|
||||||
|
|
||||||
# Indexes info files found in this location
|
# Indexes info files found in this location
|
||||||
|
@ -72,6 +73,8 @@ in
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
||||||
home.packages = [infoPkg];
|
home.packages = [ infoPkg ];
|
||||||
|
|
||||||
|
home.extraOutputsToInstall = [ "info" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue