session-init: fix option type and description

This commit is contained in:
Tobias Happ 2021-12-15 22:20:24 +01:00
parent 7e00a63733
commit b5325c18f6

View file

@ -118,9 +118,12 @@ in
}; };
sessionInit = mkOption { sessionInit = mkOption {
type = types.path; type = types.package;
internal = true; internal = true;
description = "File containing session init commands like exposing environment variables."; description = ''
Package containing the session-init script in
<code>/etc/profile.d/nix-on-droid-session-init.sh</code>.
'';
}; };
}; };