mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 05:29:46 +01:00
parent
805d82e1be
commit
95c8007b8f
1 changed files with 7 additions and 5 deletions
|
@ -29,11 +29,13 @@ in
|
||||||
xresources.properties = mkOption {
|
xresources.properties = mkOption {
|
||||||
type = types.nullOr types.attrs;
|
type = types.nullOr types.attrs;
|
||||||
default = null;
|
default = null;
|
||||||
example = {
|
example = literalExample ''
|
||||||
|
{
|
||||||
"Emacs*toolBar" = 0;
|
"Emacs*toolBar" = 0;
|
||||||
"XTerm*faceName" = "dejavu sans mono";
|
"XTerm*faceName" = "dejavu sans mono";
|
||||||
"XTerm*charClass" = [ "37:48" "45-47:48" "58:48" "64:48" "126:48" ];
|
"XTerm*charClass" = [ "37:48" "45-47:48" "58:48" "64:48" "126:48" ];
|
||||||
};
|
}
|
||||||
|
'';
|
||||||
description = ''
|
description = ''
|
||||||
X server resources that should be set.
|
X server resources that should be set.
|
||||||
Booleans are formatted as "true" or "false" respectively.
|
Booleans are formatted as "true" or "false" respectively.
|
||||||
|
|
Loading…
Reference in a new issue