mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 15:14:26 +00:00
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
1 changed files with 6 additions and 5 deletions
|
@ -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.
|
||||
'';
|
||||
};
|
||||
|
||||
|
@ -502,7 +503,7 @@ in
|
|||
&& config.submoduleSupport.externalPackageInstall
|
||||
then "/etc/profiles/per-user/${cfg.username}"
|
||||
else cfg.homeDirectory + "/.nix-profile";
|
||||
|
||||
|
||||
programs.bash.shellAliases = cfg.shellAliases;
|
||||
programs.zsh.shellAliases = cfg.shellAliases;
|
||||
programs.fish.shellAliases = cfg.shellAliases;
|
||||
|
|
Loading…
Reference in a new issue