1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

nixos: improve description of enableLegacyProfileManagement

Also applies to nix-darwin module.
This commit is contained in:
Robert Helgesson 2025-08-02 21:50:38 +02:00
parent 187e0af20a
commit d492e3c381

View file

@ -116,12 +116,11 @@ in
type = types.bool; type = types.bool;
default = false; default = false;
description = '' description = ''
Whether to enable legacy profile (and garbage collection root) Whether to enable legacy profile management during activation. When
management during activation. When enabled, the Home Manager activation enabled, the Home Manager activation will produce a per-user
will produce a per-user `home-manager` Nix profile as well as a garbage `home-manager` Nix profile, just like in the standalone installation of
collection root, just like in the standalone installation of Home Home Manager. Typically, this is not desired when Home Manager is
Manager. Typically, this is not desired when Home Manager is embedded in embedded in the system configuration.
the system configuration.
''; '';
}; };