summaryrefslogtreecommitdiffstats
path: root/nixos/modules/i18n/input-method
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2017-01-24 12:52:39 -0600
committerThomas Tuegel <ttuegel@gmail.com>2017-01-24 12:52:39 -0600
commite38970c60b638573068e9d42a4aa03d6bda1c7a0 (patch)
treea42b36125d5d945e4839339c3a438c83adc2e0e8 /nixos/modules/i18n/input-method
parent1625d8c99848a29c184511ed5f3789c69a259f5e (diff)
nixos/ibus: fix custom panel example
The example was missing a `''`, so it did not appear correctly in the manual. This also caused the manual to retain references inappropriately.
Diffstat (limited to 'nixos/modules/i18n/input-method')
-rw-r--r--nixos/modules/i18n/input-method/ibus.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/i18n/input-method/ibus.nix b/nixos/modules/i18n/input-method/ibus.nix
index 3eaf9e2ab370..a5bbe6bcb559 100644
--- a/nixos/modules/i18n/input-method/ibus.nix
+++ b/nixos/modules/i18n/input-method/ibus.nix
@@ -44,7 +44,7 @@ in
panel = mkOption {
type = with types; nullOr path;
default = null;
- example = literalExample "${pkgs.kde5.plasma-desktop}/lib/libexec/kimpanel-ibus-panel";
+ example = literalExample "''${pkgs.kde5.plasma-desktop}/lib/libexec/kimpanel-ibus-panel";
description = "Replace the IBus panel with another panel.";
};
};