1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 07:31:03 +01:00

Improve a few description fields

This commit is contained in:
Robert Helgesson 2017-01-15 20:03:55 +01:00
parent 6ec3026e51
commit 071e631648
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86
6 changed files with 18 additions and 11 deletions

View file

@ -100,7 +100,9 @@ in
options = {
target = mkOption {
type = types.str;
description = "Path to target file relative to $HOME.";
description = ''
Path to target file relative to <envar>HOME</envar>.
'';
};
text = mkOption {
@ -147,6 +149,7 @@ in
home.sessionVariables = mkOption {
default = {};
type = types.attrs;
example = { EDITOR = "emacs"; GS_OPTIONS = "-sPAPERSIZE=a4"; };
description = "Environment variables to always set at login.";
};