diff --git a/modules/home-environment.nix b/modules/home-environment.nix index 3623bc20..4df0c471 100644 --- a/modules/home-environment.nix +++ b/modules/home-environment.nix @@ -156,9 +156,9 @@ in }; home.sessionVariableSetter = mkOption { - default = "pam"; + default = "bash"; type = types.enum [ "pam" "bash" ]; - example = "bash"; + example = "pam"; description = '' Identifies the module that should set the session variables. @@ -166,7 +166,8 @@ in must also be enabled. If "pam" is set then PAM must be used to set the system - environment. + environment. Also mind that typical environment variables + might not be set by the time PAM starts up. ''; };