nixos/manual: Use literalExample when feasible.

Should bring most of the examples into a better consistency regarding
syntactic representation in the manual.

Thanks to @devhell for reporting.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
wip/yesman
aszlig 10 years ago
parent 9667a4067c
commit 8a56a55bb4
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961
  1. 2
      nixos/modules/config/fonts/fonts.nix
  2. 8
      nixos/modules/config/power-management.nix
  3. 2
      nixos/modules/config/pulseaudio.nix
  4. 4
      nixos/modules/config/shells-environment.nix
  5. 7
      nixos/modules/installer/cd-dvd/iso-image.nix
  6. 7
      nixos/modules/installer/cd-dvd/system-tarball.nix
  7. 2
      nixos/modules/misc/crashdump.nix
  8. 2
      nixos/modules/services/audio/mopidy.nix
  9. 2
      nixos/modules/services/backup/rsnapshot.nix
  10. 4
      nixos/modules/services/logging/syslog-ng.nix
  11. 2
      nixos/modules/services/monitoring/smartd.nix
  12. 4
      nixos/modules/services/networking/ircd-hybrid/default.nix
  13. 2
      nixos/modules/services/networking/znc.nix
  14. 2
      nixos/modules/services/web-servers/apache-httpd/default.nix
  15. 4
      nixos/modules/services/x11/desktop-managers/gnome3.nix
  16. 2
      nixos/modules/services/x11/desktop-managers/kde4.nix
  17. 6
      nixos/modules/services/x11/display-managers/default.nix
  18. 4
      nixos/modules/services/x11/xserver.nix

@ -11,7 +11,7 @@ with lib;
# TODO: find another name for it.
fonts = mkOption {
type = types.listOf types.path;
example = [ pkgs.dejavu_fonts ];
example = literalExample "[ pkgs.dejavu_fonts ]";
description = "List of primary font paths.";
apply = list: list ++
[ # - the user's current profile

@ -35,7 +35,9 @@ in
powerUpCommands = mkOption {
type = types.lines;
default = "";
example = "${pkgs.hdparm}/sbin/hdparm -B 255 /dev/sda";
example = literalExample ''
"''${pkgs.hdparm}/sbin/hdparm -B 255 /dev/sda"
'';
description =
''
Commands executed when the machine powers up. That is,
@ -47,7 +49,9 @@ in
powerDownCommands = mkOption {
type = types.lines;
default = "";
example = "${pkgs.hdparm}/sbin/hdparm -B 255 /dev/sda";
example = literalExample ''
"''${pkgs.hdparm}/sbin/hdparm -B 255 /dev/sda"
'';
description =
''
Commands executed when the machine powers down. That is,

@ -81,7 +81,7 @@ in {
package = mkOption {
type = types.package;
default = pulseaudioFull;
example = literalExample "pulseaudioFull";
example = literalExample "pkgs.pulseaudioFull";
description = ''
The PulseAudio derivation to use. This can be used to disable
features (such as JACK support, Bluetooth) that are enabled in the

@ -122,7 +122,9 @@ in
environment.binsh = mkOption {
default = "${config.system.build.binsh}/bin/sh";
example = "\${pkgs.dash}/bin/dash";
example = literalExample ''
"''${pkgs.dash}/bin/dash"
'';
type = types.path;
description = ''
The shell executable that is linked system-wide to

@ -113,11 +113,12 @@ in
};
isoImage.contents = mkOption {
example =
example = literalExample ''
[ { source = pkgs.memtest86 + "/memtest.bin";
target = "boot/memtest.bin";
}
];
]
'';
description = ''
This option lists files to be copied to fixed locations in the
generated ISO image.
@ -125,7 +126,7 @@ in
};
isoImage.storeContents = mkOption {
example = [pkgs.stdenv];
example = literalExample "[ pkgs.stdenv ]";
description = ''
This option lists additional derivations to be included in the
Nix store in the generated ISO image.

@ -15,11 +15,12 @@ in
{
options = {
tarball.contents = mkOption {
example =
example = literalExample ''
[ { source = pkgs.memtest86 + "/memtest.bin";
target = "boot/memtest.bin";
}
];
]
'';
description = ''
This option lists files to be copied to fixed locations in the
generated ISO image.
@ -27,7 +28,7 @@ in
};
tarball.storeContents = mkOption {
example = [pkgs.stdenv];
example = literalExample "[ pkgs.stdenv ]";
description = ''
This option lists additional derivations to be included in the
Nix store in the generated ISO image.

@ -28,7 +28,7 @@ in
# We don't want to evaluate all of linuxPackages for the manual
# - some of it might not even evaluate correctly.
defaultText = "pkgs.linuxPackages";
example = "pkgs.linuxPackages_2_6_25";
example = literalExample "pkgs.linuxPackages_2_6_25";
description = ''
This will override the boot.kernelPackages, and will add some
kernel configuration parameters for the crash dump to work.

@ -49,7 +49,7 @@ in {
extensionPackages = mkOption {
default = [];
type = types.listOf types.package;
example = [ mopidy-spotify ];
example = literalExample "[ pkgs.mopidy-spotify ]";
description = ''
Mopidy extensions that should be loaded by the service.
'';

@ -31,7 +31,7 @@ in
cronIntervals = mkOption {
default = {};
example = { "hourly" = "0 * * * *"; "daily" = "50 21 * * *"; };
example = { hourly = "0 * * * *"; daily = "50 21 * * *"; };
type = types.attrsOf types.string;
description = ''
Periodicity at which intervals should be run by cron.

@ -49,7 +49,9 @@ in {
extraModulePaths = mkOption {
type = types.listOf types.str;
default = [];
example = [ "${pkgs.syslogng_incubator}/lib/syslog-ng" ];
example = literalExample ''
[ "''${pkgs.syslogng_incubator}/lib/syslog-ng" ]
'';
description = ''
A list of paths that should be included in syslog-ng's
<literal>--module-path</literal> option. They should usually

@ -62,7 +62,7 @@ in
enable = mkOption {
default = false;
type = types.bool;
example = "true";
example = true;
description = ''
Run smartd from the smartmontools package. Note that e-mail
notifications will not be enabled unless you configure the list of

@ -66,7 +66,7 @@ in
rsaKey = mkOption {
default = null;
example = /root/certificates/irc.key;
example = literalExample "/root/certificates/irc.key";
description = "
IRCD server RSA key.
";
@ -74,7 +74,7 @@ in
certificate = mkOption {
default = null;
example = /root/certificates/irc.pem;
example = literalExample "/root/certificates/irc.pem";
description = "
IRCD server SSL certificate. There are some limitations - read manual.
";

@ -228,7 +228,7 @@ in
modulePackages = mkOption {
type = types.listOf types.package;
default = [ ];
example = [ pkgs.zncModules.fish pkgs.zncModules.push ];
example = literalExample "[ pkgs.zncModules.fish pkgs.zncModules.push ]";
description = ''
A list of global znc module packages to add to znc.
'';

@ -423,7 +423,7 @@ in
package = mkOption {
type = types.package;
default = pkgs.apacheHttpd.override { mpm = mainCfg.multiProcessingModule; };
example = "pkgs.apacheHttpd_2_4";
example = literalExample "pkgs.apacheHttpd_2_4";
description = ''
Overridable attribute of the Apache HTTP Server package to use.
'';

@ -37,7 +37,7 @@ in {
services.xserver.desktopManager.gnome3.sessionPath = mkOption {
default = [];
example = "[ pkgs.gnome3.gpaste ]";
example = literalExample "[ pkgs.gnome3.gpaste ]";
description = "Additional list of packages to be added to the session search path.
Useful for gnome shell extensions or gsettings-conditionated autostart.";
apply = list: list ++ [ gnome3.gnome_shell ];
@ -51,7 +51,7 @@ in {
environment.gnome3.excludePackages = mkOption {
default = [];
example = "[ pkgs.gnome3.totem ]";
example = literalExample "[ pkgs.gnome3.totem ]";
type = types.listOf types.package;
description = "Which packages gnome should exclude from the default environment";
};

@ -65,7 +65,7 @@ in
environment.kdePackages = mkOption {
default = [];
example = "[ pkgs.kde4.kdesdk ]";
example = literalExample "[ pkgs.kde4.kdesdk ]";
type = types.listOf types.package;
description = "This option is obsolete. Please use <option>environment.systemPackages</option> instead.";
};

@ -251,14 +251,16 @@ in
execCmd = mkOption {
type = types.str;
example = "${pkgs.slim}/bin/slim";
example = literalExample ''
"''${pkgs.slim}/bin/slim"
'';
description = "Command to start the display manager.";
};
environment = mkOption {
type = types.attrsOf types.unspecified;
default = {};
example = { SLIM_CFGFILE = /etc/slim.conf; };
example = { SLIM_CFGFILE = "/etc/slim.conf"; };
description = "Additional environment variables needed by the display manager.";
};

@ -151,7 +151,7 @@ in
modules = mkOption {
type = types.listOf types.path;
default = [];
example = [ pkgs.xf86_input_wacom ];
example = literalExample "[ pkgs.xf86_input_wacom ]";
description = "Packages to be added to the module search path of the X server.";
};
@ -201,7 +201,7 @@ in
vaapiDrivers = mkOption {
type = types.listOf types.path;
default = [ ];
example = "[ pkgs.vaapiIntel pkgs.vaapiVdpau ]";
example = literalExample "[ pkgs.vaapiIntel pkgs.vaapiVdpau ]";
description = ''
Packages providing libva acceleration drivers.
'';

Loading…
Cancel
Save