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.
This commit is contained in:
Franz Pletz 2017-03-17 23:31:52 +01:00
parent a8785daf0e
commit 9536169074
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
47 changed files with 1 additions and 86 deletions

View File

@ -172,7 +172,6 @@ in
isoImage.includeSystemBuildDependencies = mkOption { isoImage.includeSystemBuildDependencies = mkOption {
default = false; default = false;
example = true;
description = '' description = ''
Set this option to include all the needed sources etc in the Set this option to include all the needed sources etc in the
image. It significantly increases image size. Use that when image. It significantly increases image size. Use that when

View File

@ -10,7 +10,6 @@ with lib;
programs.adb = { programs.adb = {
enable = mkOption { enable = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = '' description = ''
Whether to configure system to use Android Debug Bridge (adb). Whether to configure system to use Android Debug Bridge (adb).

View File

@ -10,7 +10,6 @@ with lib;
programs.gphoto2 = { programs.gphoto2 = {
enable = mkOption { enable = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = '' description = ''
Whether to configure system to use gphoto2. Whether to configure system to use gphoto2.

View File

@ -14,7 +14,6 @@ in
Whether to enable mosh. Note, this will open ports in your firewall! Whether to enable mosh. Note, this will open ports in your firewall!
''; '';
default = false; default = false;
example = true;
type = lib.types.bool; type = lib.types.bool;
}; };
}; };

View File

@ -22,7 +22,6 @@ in
directDelivery = mkOption { directDelivery = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Use the trivial Mail Transfer Agent (MTA) Use the trivial Mail Transfer Agent (MTA)
<command>ssmtp</command> package to allow programs to send <command>ssmtp</command> package to allow programs to send
@ -65,7 +64,6 @@ in
useTLS = mkOption { useTLS = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Whether TLS should be used to connect to the default mail Whether TLS should be used to connect to the default mail
server. server.
@ -75,7 +73,6 @@ in
useSTARTTLS = mkOption { useSTARTTLS = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Whether the STARTTLS should be used to connect to the default Whether the STARTTLS should be used to connect to the default
mail server. (This is needed for TLS-capable mail servers mail server. (This is needed for TLS-capable mail servers

View File

@ -65,7 +65,6 @@ in {
aggressiveResize = mkOption { aggressiveResize = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = '' description = ''
Resize the window to the size of the smallest session for which it is the current window. Resize the window to the size of the smallest session for which it is the current window.
@ -81,14 +80,12 @@ in {
clock24 = mkOption { clock24 = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = "Use 24 hour clock."; description = "Use 24 hour clock.";
}; };
customPaneNavigationAndResize = mkOption { customPaneNavigationAndResize = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = "Override the hjkl and HJKL bindings for pane navigation and resizing in VI mode."; description = "Override the hjkl and HJKL bindings for pane navigation and resizing in VI mode.";
}; };
@ -124,14 +121,12 @@ in {
newSession = mkOption { newSession = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = "Automatically spawn a session if trying to attach and none are running."; description = "Automatically spawn a session if trying to attach and none are running.";
}; };
reverseSplit = mkOption { reverseSplit = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = "Reverse the window split shortcuts."; description = "Reverse the window split shortcuts.";
}; };

View File

@ -9,7 +9,6 @@ in {
defaultEditor = mkOption { defaultEditor = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
When enabled, installs vim and configures vim to be the default editor When enabled, installs vim and configures vim to be the default editor
using the EDITOR environment variable. using the EDITOR environment variable.

View File

@ -21,7 +21,6 @@ in
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
example = true;
default = false; default = false;
description = '' description = ''
Enable grsecurity/PaX. Enable grsecurity/PaX.
@ -30,7 +29,6 @@ in
lockTunables = mkOption { lockTunables = mkOption {
type = types.bool; type = types.bool;
example = false;
default = true; default = true;
description = '' description = ''
Whether to automatically lock grsecurity tunables Whether to automatically lock grsecurity tunables
@ -43,7 +41,6 @@ in
disableEfiRuntimeServices = mkOption { disableEfiRuntimeServices = mkOption {
type = types.bool; type = types.bool;
example = false;
default = true; default = true;
description = '' description = ''
Whether to disable access to EFI runtime services. Enabling EFI runtime Whether to disable access to EFI runtime services. Enabling EFI runtime

View File

@ -26,7 +26,6 @@ in
enableManualRsnapshot = mkOption { enableManualRsnapshot = mkOption {
description = "Whether to enable manual usage of the rsnapshot command with this module."; description = "Whether to enable manual usage of the rsnapshot command with this module.";
default = true; default = true;
example = false;
type = types.bool; type = types.bool;
}; };

View File

@ -12,7 +12,6 @@ in
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Whether to enable the BOINC distributed computing client. If this Whether to enable the BOINC distributed computing client. If this
option is set to true, the boinc_client daemon will be run as a option is set to true, the boinc_client daemon will be run as a
@ -41,7 +40,6 @@ in
allowRemoteGuiRpc = mkOption { allowRemoteGuiRpc = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
If set to true, any remote host can connect to and control this BOINC If set to true, any remote host can connect to and control this BOINC
client (subject to password authentication). If instead set to false, client (subject to password authentication). If instead set to false,

View File

@ -310,7 +310,6 @@ in {
autoBootstrap = mkOption { autoBootstrap = mkOption {
description = "It makes new (non-seed) nodes automatically migrate the right data to themselves."; description = "It makes new (non-seed) nodes automatically migrate the right data to themselves.";
default = true; default = true;
example = true;
type = types.bool; type = types.bool;
}; };
streamingSocketTimoutInMS = mkOption { streamingSocketTimoutInMS = mkOption {

View File

@ -25,7 +25,6 @@ in
description = " description = "
Whether to enable the ldap server. Whether to enable the ldap server.
"; ";
example = true;
}; };
user = mkOption { user = mkOption {

View File

@ -21,7 +21,6 @@ in {
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Whether to enable a user service for the Emacs daemon. Use <literal>emacsclient</literal> to connect to the 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 daemon. If <literal>true</literal>, <varname>services.emacs.install</varname> is
@ -32,7 +31,6 @@ in {
install = mkOption { install = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Whether to install a user service for the Emacs daemon. Once Whether to install a user service for the Emacs daemon. Once
the service is started, use emacsclient to connect to the the service is started, use emacsclient to connect to the
@ -57,7 +55,6 @@ in {
defaultEditor = mkOption { defaultEditor = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
When enabled, configures emacsclient to be the default editor When enabled, configures emacsclient to be the default editor
using the EDITOR environment variable. using the EDITOR environment variable.

View File

@ -12,7 +12,6 @@ in {
install = mkOption { install = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Whether to install a user service for Offlineimap. Once Whether to install a user service for Offlineimap. Once
the service is started, emails will be fetched automatically. the service is started, emails will be fetched automatically.

View File

@ -16,7 +16,6 @@ in
services.ihaskell = { services.ihaskell = {
enable = mkOption { enable = mkOption {
default = false; default = false;
example = true;
description = "Autostart an IHaskell notebook service."; description = "Autostart an IHaskell notebook service.";
}; };

View File

@ -148,7 +148,6 @@ in {
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Whether to enable the Taskwarrior server. Whether to enable the Taskwarrior server.

View File

@ -10,7 +10,6 @@ in {
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Enable the arbtt statistics capture service. Enable the arbtt statistics capture service.
''; '';

View File

@ -35,7 +35,6 @@ in {
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = "Enable aiccu IPv6 over IPv4 SiXXs tunnel"; description = "Enable aiccu IPv6 over IPv4 SiXXs tunnel";
}; };
@ -88,21 +87,18 @@ in {
verbose = mkOption { verbose = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = "Be verbose?"; description = "Be verbose?";
}; };
automatic = mkOption { automatic = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = "Automatic Login and Tunnel activation"; description = "Automatic Login and Tunnel activation";
}; };
requireTLS = mkOption { requireTLS = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
When set to true, if TLS is not supported on the server When set to true, if TLS is not supported on the server
the TIC transaction will fail. the TIC transaction will fail.
@ -124,7 +120,6 @@ in {
defaultRoute = mkOption { defaultRoute = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = "Add a default route"; description = "Add a default route";
}; };
@ -138,7 +133,6 @@ in {
makeHeartBeats = mkOption { makeHeartBeats = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = '' description = ''
In general you don't want to turn this off In general you don't want to turn this off
Of course only applies to AYIYA and heartbeat tunnels not to static ones Of course only applies to AYIYA and heartbeat tunnels not to static ones
@ -148,21 +142,18 @@ in {
noConfigure = mkOption { noConfigure = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = "Don't configure anything"; description = "Don't configure anything";
}; };
behindNAT = mkOption { behindNAT = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = "Notify the user that a NAT-kind network is detected"; description = "Notify the user that a NAT-kind network is detected";
}; };
localIPv4Override = mkOption { localIPv4Override = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Overrides the IPv4 parameter received from TIC Overrides the IPv4 parameter received from TIC
This allows one to configure a NAT into "DMZ" mode and then This allows one to configure a NAT into "DMZ" mode and then

View File

@ -19,7 +19,6 @@ in {
services.ferm = { services.ferm = {
enable = mkOption { enable = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = '' description = ''
Whether to enable Ferm Firewall. Whether to enable Ferm Firewall.

View File

@ -33,7 +33,6 @@ in
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Whether to enable a Firefox Sync Server, this give the opportunity to Whether to enable a Firefox Sync Server, this give the opportunity to
Firefox users to store all synchronized data on their own server. To use this Firefox users to store all synchronized data on their own server. To use this
@ -78,7 +77,6 @@ in
allowNewUsers = mkOption { allowNewUsers = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = '' description = ''
Whether to allow new-user signups on the server. Only request by Whether to allow new-user signups on the server. Only request by
existing accounts will be honored. existing accounts will be honored.

View File

@ -147,7 +147,6 @@ in
allowAnonymous = mkOption { allowAnonymous = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = '' description = ''
Allow clients to connect without authentication. Allow clients to connect without authentication.

View File

@ -104,7 +104,6 @@ in
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = any isEnabled services; default = any isEnabled services;
example = true;
description = '' description = ''
Whether to enable the Zebra routing manager. Whether to enable the Zebra routing manager.

View File

@ -132,7 +132,6 @@ in
services.znc = { services.znc = {
enable = mkOption { enable = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = '' description = ''
Enable a ZNC service for a user. Enable a ZNC service for a user.
@ -251,7 +250,6 @@ in
useSSL = mkOption { useSSL = mkOption {
default = true; default = true;
example = true;
type = types.bool; type = types.bool;
description = '' description = ''
Indicates whether the ZNC server should use SSL when listening on the specified port. A self-signed certificate will be generated. Indicates whether the ZNC server should use SSL when listening on the specified port. A self-signed certificate will be generated.
@ -278,7 +276,6 @@ in
mutable = mkOption { mutable = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = '' description = ''
Indicates whether to allow the contents of the `dataDir` directory to be changed Indicates whether to allow the contents of the `dataDir` directory to be changed

View File

@ -39,7 +39,7 @@ in
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
example = true; default = false;
description = "Whether to enable the Vixie cron daemon."; description = "Whether to enable the Vixie cron daemon.";
}; };

View File

@ -99,7 +99,6 @@ in
pcap = mkOption { pcap = mkOption {
default = true; default = true;
example = false;
type = types.bool; type = types.bool;
description = "Whether to enable pcap"; description = "Whether to enable pcap";
}; };

View File

@ -13,7 +13,6 @@ in {
deluge = { deluge = {
enable = mkOption { enable = mkOption {
default = false; default = false;
example = true;
description = "Start the Deluge daemon"; description = "Start the Deluge daemon";
}; };
@ -29,7 +28,6 @@ in {
deluge.web = { deluge.web = {
enable = mkOption { enable = mkOption {
default = false; default = false;
example = true;
description = '' description = ''
Start Deluge Web daemon. Start Deluge Web daemon.
''; '';

View File

@ -88,7 +88,6 @@ in
secure = mkOption { secure = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = "Whether the connections to the proxy should be considered secure."; description = "Whether the connections to the proxy should be considered secure.";
}; };
}; };

View File

@ -78,7 +78,6 @@ in
secure = mkOption { secure = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = "Whether the connections to the proxy should be considered secure."; description = "Whether the connections to the proxy should be considered secure.";
}; };
}; };

View File

@ -29,7 +29,6 @@ in
agree = mkOption { agree = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = "Agree to Let's Encrypt Subscriber Agreement"; description = "Agree to Let's Encrypt Subscriber Agreement";
}; };

View File

@ -43,7 +43,6 @@ in {
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Whether of not to enable Compton as the X.org composite manager. Whether of not to enable Compton as the X.org composite manager.
''; '';
@ -52,7 +51,6 @@ in {
fade = mkOption { fade = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Fade windows in and out. Fade windows in and out.
''; '';
@ -93,7 +91,6 @@ in {
shadow = mkOption { shadow = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Draw window shadows. Draw window shadows.
''; '';

View File

@ -20,7 +20,6 @@ in
services.xserver.desktopManager.enlightenment.enable = mkOption { services.xserver.desktopManager.enlightenment.enable = mkOption {
default = false; default = false;
example = true;
description = "Enable the Enlightenment desktop environment."; description = "Enable the Enlightenment desktop environment.";
}; };

View File

@ -53,7 +53,6 @@ in {
services.xserver.desktopManager.gnome3 = { services.xserver.desktopManager.gnome3 = {
enable = mkOption { enable = mkOption {
default = false; default = false;
example = true;
description = "Enable Gnome 3 desktop manager."; description = "Enable Gnome 3 desktop manager.";
}; };

View File

@ -11,7 +11,6 @@ in
services.xserver.desktopManager.kodi = { services.xserver.desktopManager.kodi = {
enable = mkOption { enable = mkOption {
default = false; default = false;
example = true;
description = "Enable the kodi multimedia center."; description = "Enable the kodi multimedia center.";
}; };
}; };

View File

@ -13,7 +13,6 @@ in
services.xserver.desktopManager.xterm.enable = mkOption { services.xserver.desktopManager.xterm.enable = mkOption {
default = true; default = true;
example = false;
description = "Enable a xterm terminal as a desktop manager."; description = "Enable a xterm terminal as a desktop manager.";
}; };

View File

@ -73,7 +73,6 @@ in {
clickMethod = mkOption { clickMethod = mkOption {
type = types.nullOr (types.enum [ "none" "buttonareas" "clickfinger" ]); type = types.nullOr (types.enum [ "none" "buttonareas" "clickfinger" ]);
default = null; default = null;
example = "none";
description = description =
'' ''
Enables a click method. Permitted values are none, buttonareas, clickfinger. Enables a click method. Permitted values are none, buttonareas, clickfinger.
@ -85,14 +84,12 @@ in {
leftHanded = mkOption { leftHanded = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = "Enables left-handed button orientation, i.e. swapping left and right buttons."; description = "Enables left-handed button orientation, i.e. swapping left and right buttons.";
}; };
middleEmulation = mkOption { middleEmulation = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = description =
'' ''
Enables middle button emulation. When enabled, pressing the left and right buttons Enables middle button emulation. When enabled, pressing the left and right buttons
@ -103,7 +100,6 @@ in {
naturalScrolling = mkOption { naturalScrolling = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = "Enables or disables natural scrolling behavior."; description = "Enables or disables natural scrolling behavior.";
}; };
@ -131,7 +127,6 @@ in {
horizontalScrolling = mkOption { horizontalScrolling = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = description =
'' ''
Disables horizontal scrolling. When disabled, this driver will discard any horizontal scroll Disables horizontal scrolling. When disabled, this driver will discard any horizontal scroll
@ -153,7 +148,6 @@ in {
tapping = mkOption { tapping = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = description =
'' ''
Enables or disables tap-to-click behavior. Enables or disables tap-to-click behavior.
@ -163,7 +157,6 @@ in {
tappingDragLock = mkOption { tappingDragLock = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = description =
'' ''
Enables or disables drag lock during tapping behavior. When enabled, a finger up during tap- Enables or disables drag lock during tapping behavior. When enabled, a finger up during tap-
@ -175,7 +168,6 @@ in {
disableWhileTyping = mkOption { disableWhileTyping = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = description =
'' ''
Disable input method while typing. Disable input method while typing.

View File

@ -18,20 +18,17 @@ in {
enable = mkOption { enable = mkOption {
default = false; default = false;
example = true;
description = "Whether to enable multitouch touchpad support."; description = "Whether to enable multitouch touchpad support.";
}; };
invertScroll = mkOption { invertScroll = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = "Whether to invert scrolling direction à la OSX Lion"; description = "Whether to invert scrolling direction à la OSX Lion";
}; };
ignorePalm = mkOption { ignorePalm = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = "Whether to ignore touches detected as being the palm (i.e when typing)"; description = "Whether to ignore touches detected as being the palm (i.e when typing)";
}; };
@ -39,7 +36,6 @@ in {
tapButtons = mkOption { tapButtons = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = "Whether to enable tap buttons."; description = "Whether to enable tap buttons.";
}; };

View File

@ -29,7 +29,6 @@ in {
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = "Whether to enable touchpad support."; description = "Whether to enable touchpad support.";
}; };
@ -102,7 +101,6 @@ in {
tapButtons = mkOption { tapButtons = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = "Whether to enable tap buttons."; description = "Whether to enable tap buttons.";
}; };
@ -125,7 +123,6 @@ in {
palmDetect = mkOption { palmDetect = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = "Whether to enable palm detection (hardware support required)"; description = "Whether to enable palm detection (hardware support required)";
}; };
@ -146,7 +143,6 @@ in {
horizontalScroll = mkOption { horizontalScroll = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = "Whether to enable horizontal scrolling (on touchpad)"; description = "Whether to enable horizontal scrolling (on touchpad)";
}; };

View File

@ -12,7 +12,6 @@ in {
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Enable Redshift to change your screen's colour temperature depending on Enable Redshift to change your screen's colour temperature depending on
the time of day. the time of day.

View File

@ -11,7 +11,6 @@ in {
description = "Enable unclutter-xfixes to hide your mouse cursor when inactive."; description = "Enable unclutter-xfixes to hide your mouse cursor when inactive.";
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
}; };
package = mkOption { package = mkOption {

View File

@ -11,7 +11,6 @@ in {
description = "Enable unclutter to hide your mouse cursor when inactive"; description = "Enable unclutter to hide your mouse cursor when inactive";
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
}; };
package = mkOption { package = mkOption {

View File

@ -11,7 +11,6 @@ in {
options.services.urxvtd.enable = mkOption { options.services.urxvtd.enable = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true;
description = '' description = ''
Enable urxvtd, the urxvt terminal daemon. To use urxvtd, run Enable urxvtd, the urxvt terminal daemon. To use urxvtd, run
"urxvtc". "urxvtc".

View File

@ -21,7 +21,6 @@ in
enable = mkEnableOption "exwm"; enable = mkEnableOption "exwm";
enableDefaultConfig = mkOption { enableDefaultConfig = mkOption {
default = true; default = true;
example = false;
type = lib.types.bool; type = lib.types.bool;
description = "Enable an uncustomised exwm configuration."; description = "Enable an uncustomised exwm configuration.";
}; };

View File

@ -44,7 +44,6 @@ in
enableContribAndExtras = mkOption { enableContribAndExtras = mkOption {
default = false; default = false;
example = true;
type = lib.types.bool; type = lib.types.bool;
description = "Enable xmonad-{contrib,extras} in Xmonad."; description = "Enable xmonad-{contrib,extras} in Xmonad.";
}; };

View File

@ -381,7 +381,6 @@ in
efiInstallAsRemovable = mkOption { efiInstallAsRemovable = mkOption {
default = false; default = false;
example = true;
type = types.bool; type = types.bool;
description = '' description = ''
Whether to invoke <literal>grub-install</literal> with Whether to invoke <literal>grub-install</literal> with

View File

@ -109,7 +109,6 @@ in
forceImportRoot = mkOption { forceImportRoot = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = '' description = ''
Forcibly import the ZFS root pool(s) during early boot. Forcibly import the ZFS root pool(s) during early boot.
@ -128,7 +127,6 @@ in
forceImportAll = mkOption { forceImportAll = mkOption {
type = types.bool; type = types.bool;
default = true; default = true;
example = false;
description = '' description = ''
Forcibly import all ZFS pool(s). Forcibly import all ZFS pool(s).

View File

@ -548,7 +548,6 @@ in
}; };
rstp = mkOption { rstp = mkOption {
example = true;
default = false; default = false;
type = types.bool; type = types.bool;
description = "Whether the bridge interface should enable rstp."; description = "Whether the bridge interface should enable rstp.";

View File

@ -274,7 +274,6 @@ let
}; };
isReadOnly = mkOption { isReadOnly = mkOption {
default = true; default = true;
example = true;
type = types.bool; type = types.bool;
description = "Determine whether the mounted path will be accessed in read-only mode."; description = "Determine whether the mounted path will be accessed in read-only mode.";
}; };