1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 16:38:34 +02:00

emacs: make finalPackage option more accessible

Instead of "internal" mark it as "invisible".
This commit is contained in:
Robert Helgesson 2019-01-03 02:15:17 +01:00
parent 7afefcf75d
commit 20a60be550
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -55,9 +55,11 @@ in
finalPackage = mkOption {
type = types.package;
internal = true;
visible = false;
readOnly = true;
description = "The Emacs package including any extra packages.";
description = ''
The Emacs package including any overrides and extra packages.
'';
};
};
};