aboutsummaryrefslogtreecommitdiff
path: root/modules/xresources.nix
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2017-01-15 20:03:55 +0100
committerRobert Helgesson <robert@rycee.net>2017-01-15 23:42:48 +0100
commit071e631648924cd5929c33a02e626fb23aca3ae4 (patch)
treefc2e74b558c81384831ade9c7d07951f3bf53f7d /modules/xresources.nix
parent6ec3026e510d7e9440e8d0cbe206ef68a8e4251a (diff)
Improve a few description fields
Diffstat (limited to '')
-rw-r--r--modules/xresources.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/modules/xresources.nix b/modules/xresources.nix
index 61efd3d98a1..abeed0c1fc2 100644
--- a/modules/xresources.nix
+++ b/modules/xresources.nix
@@ -21,15 +21,14 @@ in
xresources.properties = mkOption {
type = types.nullOr types.attrs;
default = null;
- example = ''
- {
- "XTerm*faceName" = "dejavu sans mono";
- "Emacs*toolBar" = 0;
- }
- '';
+ example = {
+ "XTerm*faceName" = "dejavu sans mono";
+ "Emacs*toolBar" = 0;
+ };
description = ''
- X server resources that should be set. If null, then this
- feature is disabled and no ~/.Xresources link is produced.
+ X server resources that should be set. If <code>null</code>,
+ then this feature is disabled and no
+ <filename>~/.Xresources</filename> link is produced.
'';
};
};