summary refs log tree commit diff
path: root/nixos/modules/services/editors/emacs.nix
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-03-17 23:31:52 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2017-03-17 23:36:19 +0100
commit953616907493c5b81ba3ec9dd86f1422f4d1fcd3 (patch)
tree1ebe5e1caaed3b8a5920280bba56406974202326 /nixos/modules/services/editors/emacs.nix
parenta8785daf0ea794f1791c598c6cac9db3858b45bb (diff)
downloadnixpkgs-953616907493c5b81ba3ec9dd86f1422f4d1fcd3.tar
nixpkgs-953616907493c5b81ba3ec9dd86f1422f4d1fcd3.tar.gz
nixpkgs-953616907493c5b81ba3ec9dd86f1422f4d1fcd3.tar.bz2
nixpkgs-953616907493c5b81ba3ec9dd86f1422f4d1fcd3.tar.lz
nixpkgs-953616907493c5b81ba3ec9dd86f1422f4d1fcd3.tar.xz
nixpkgs-953616907493c5b81ba3ec9dd86f1422f4d1fcd3.tar.zst
nixpkgs-953616907493c5b81ba3ec9dd86f1422f4d1fcd3.zip
nixos/treewide: remove boolean examples for options
They contain no useful information and increase the length of the
autogenerated options documentation.

See discussion in #18816.
Diffstat (limited to 'nixos/modules/services/editors/emacs.nix')
-rw-r--r--nixos/modules/services/editors/emacs.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/nixos/modules/services/editors/emacs.nix b/nixos/modules/services/editors/emacs.nix
index 08fa6de6374..2c5a0c4849e 100644
--- a/nixos/modules/services/editors/emacs.nix
+++ b/nixos/modules/services/editors/emacs.nix
@@ -21,7 +21,6 @@ in {
     enable = mkOption {
       type = types.bool;
       default = false;
-      example = true;
       description = ''
         Whether to enable a user service for the Emacs daemon. Use <literal>emacsclient</literal> to connect to the
         daemon. If <literal>true</literal>, <varname>services.emacs.install</varname> is
@@ -32,7 +31,6 @@ in {
     install = mkOption {
       type = types.bool;
       default = false;
-      example = true;
       description = ''
         Whether to install a user service for the Emacs daemon. Once
         the service is started, use emacsclient to connect to the
@@ -57,7 +55,6 @@ in {
     defaultEditor = mkOption {
       type = types.bool;
       default = false;
-      example = true;
       description = ''
         When enabled, configures emacsclient to be the default editor
         using the EDITOR environment variable.