home-environment: make home.profileDirectory
public
This option has been stable for a long time and may be generally useful.
This commit is contained in:
parent
398c0b36a3
commit
8230decb3f
|
@ -205,12 +205,13 @@ in
|
|||
|
||||
home.profileDirectory = mkOption {
|
||||
type = types.path;
|
||||
defaultText = "~/.nix-profile";
|
||||
internal = true;
|
||||
defaultText = literalExpression ''
|
||||
"''${home.homeDirectory}/.nix-profile" or
|
||||
"/etc/profiles/per-user/''${home.username}"
|
||||
'';
|
||||
readOnly = true;
|
||||
description = ''
|
||||
The profile directory where Home Manager generations are
|
||||
installed.
|
||||
The profile directory where Home Manager generations are installed.
|
||||
'';
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue