bash: reword option descriptions

This commit is contained in:
Robert Helgesson 2018-01-07 15:04:57 +01:00
parent 59f44c1189
commit 8a2bf21cee
Failed to generate hash of commit

View file

@ -93,13 +93,19 @@ in
profileExtra = mkOption {
default = "";
type = types.lines;
description = "Extra commands that should be added to .profile.";
description = ''
Extra commands that should be run when initializing a login
shell.
'';
};
initExtra = mkOption {
default = "";
type = types.lines;
description = "Extra commands that should be added to .bashrc.";
description = ''
Extra commands that should be run when initializing an
interactive shell.
'';
};
};
};