2007-01-08 22:41:41 +00:00
|
|
|
{pkgs}:
|
|
|
|
|
2006-12-11 16:10:23 +00:00
|
|
|
[
|
2006-11-27 15:07:46 +00:00
|
|
|
|
2006-12-11 16:10:23 +00:00
|
|
|
|
|
|
|
{
|
2006-12-18 19:46:48 +00:00
|
|
|
name = ["networking" "hostName"];
|
2006-11-27 15:07:46 +00:00
|
|
|
default = "nixos";
|
2006-11-27 16:26:51 +00:00
|
|
|
description = "The name of the machine.";
|
|
|
|
}
|
2006-11-27 15:07:46 +00:00
|
|
|
|
2007-01-17 12:33:23 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
name = ["time" "timeZone"];
|
|
|
|
default = "CET";
|
|
|
|
example = "America/New_York";
|
|
|
|
description = "The time zone used when displaying times and dates.";
|
|
|
|
}
|
|
|
|
|
2006-12-11 16:10:23 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
name = ["boot" "autoDetectRootDevice"];
|
|
|
|
default = false;
|
|
|
|
description = "
|
|
|
|
Whether to find the root device automatically by searching for a
|
2006-12-21 00:16:20 +00:00
|
|
|
device with the right label. If this option is off, then a root
|
2006-12-21 01:07:23 +00:00
|
|
|
file system must be specified using <option>fileSystems</option>.
|
2006-12-11 16:10:23 +00:00
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["boot" "readOnlyRoot"];
|
|
|
|
default = false;
|
|
|
|
description = "
|
|
|
|
Whether the root device should be mounted writable. This should
|
|
|
|
be set when booting from CD-ROM.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["boot" "rootLabel"];
|
|
|
|
description = "
|
|
|
|
When auto-detecting the root device (see
|
|
|
|
<option>boot.autoDetectRootDevice</option>), this option
|
|
|
|
specifies the label of the root device. Right now, this is
|
|
|
|
merely a file name that should exist in the root directory of
|
|
|
|
the file system. It is used to find the boot CD-ROM.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["boot" "grubDevice"];
|
|
|
|
default = "";
|
|
|
|
example = "/dev/hda";
|
|
|
|
description = "
|
|
|
|
The device on which the boot loader, Grub, will be installed.
|
|
|
|
If empty, Grub won't be installed and it's your responsibility
|
|
|
|
to make the system bootable.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-11 17:36:57 +00:00
|
|
|
{
|
|
|
|
name = ["boot" "kernelParams"];
|
|
|
|
default = [
|
|
|
|
"selinux=0"
|
|
|
|
"apm=on"
|
|
|
|
"acpi=on"
|
|
|
|
"vga=0x317"
|
|
|
|
"console=tty1"
|
|
|
|
"splash=verbose"
|
|
|
|
];
|
|
|
|
description = "
|
|
|
|
The kernel parameters. If you want to add additional
|
|
|
|
parameters, it's best to set
|
2007-01-23 11:06:31 +00:00
|
|
|
<option>boot.extraKernelParams</option>.
|
2006-12-11 17:36:57 +00:00
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["boot" "extraKernelParams"];
|
|
|
|
default = [
|
|
|
|
];
|
|
|
|
example = [
|
|
|
|
"debugtrace"
|
|
|
|
];
|
|
|
|
description = "
|
|
|
|
Additional user-defined kernel parameters.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-22 23:34:42 +00:00
|
|
|
{
|
|
|
|
name = ["boot" "hardwareScan"];
|
|
|
|
default = true;
|
|
|
|
description = "
|
|
|
|
Whether to try to load kernel modules for all detected hardware.
|
|
|
|
Usually this does a good job of providing you with the modules
|
|
|
|
you need, but sometimes it can crash the system or cause other
|
|
|
|
nasty effects. If the hardware scan is turned on, it can be
|
|
|
|
disabled at boot time by adding the <literal>safemode</literal>
|
|
|
|
parameter to the kernel command line.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["boot" "kernelModules"];
|
|
|
|
default = [];
|
|
|
|
description = "
|
|
|
|
The set of kernel modules to be loaded in the second stage of
|
|
|
|
the boot process. That is, these modules are not included in
|
|
|
|
the initial ramdisk, so they'd better not be required for
|
|
|
|
mounting the root file system. Add them to
|
2007-01-23 11:06:31 +00:00
|
|
|
<option>boot.initrd.extraKernelModules</option> if they are.
|
2006-12-22 23:34:42 +00:00
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-19 22:12:44 +00:00
|
|
|
{
|
|
|
|
name = ["boot" "initrd" "kernelModules"];
|
2006-12-23 00:13:22 +00:00
|
|
|
default = [
|
|
|
|
"ahci"
|
|
|
|
"ata_piix"
|
2006-12-23 00:59:14 +00:00
|
|
|
"sd_mod"
|
2006-12-23 00:13:22 +00:00
|
|
|
"sr_mod"
|
|
|
|
"ide-cd"
|
|
|
|
"ide-disk"
|
|
|
|
"ide-generic"
|
|
|
|
"ext3"
|
2007-01-30 12:49:18 +00:00
|
|
|
# Support USB keyboards, in case the boot fails and we only have
|
|
|
|
# a USB keyboard.
|
|
|
|
"ehci_hcd"
|
|
|
|
"ohci_hcd"
|
|
|
|
"usbhid"
|
2006-12-23 00:13:22 +00:00
|
|
|
];
|
2006-12-19 22:12:44 +00:00
|
|
|
description = "
|
|
|
|
The set of kernel modules in the initial ramdisk used during the
|
|
|
|
boot process. This set must include all modules necessary for
|
|
|
|
mounting the root device. That is, it should include modules
|
|
|
|
for the physical device (e.g., SCSI drivers) and for the file
|
|
|
|
system (e.g., ext3). The set specified here is automatically
|
|
|
|
closed under the module dependency relation, i.e., all
|
|
|
|
dependencies of the modules list here are included
|
|
|
|
automatically. If you want to add additional
|
|
|
|
modules, it's best to set
|
2007-01-23 11:06:31 +00:00
|
|
|
<option>boot.initrd.extraKernelModules</option>.
|
2006-12-19 22:12:44 +00:00
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["boot" "initrd" "extraKernelModules"];
|
|
|
|
default = [];
|
|
|
|
description = "
|
2006-12-22 23:34:42 +00:00
|
|
|
Additional kernel modules for the initial ramdisk. These are
|
|
|
|
loaded before the modules listed in
|
2007-01-23 11:06:31 +00:00
|
|
|
<option>boot.initrd.kernelModules</option>, so they take
|
2006-12-22 23:34:42 +00:00
|
|
|
precedence.
|
2006-12-19 22:12:44 +00:00
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-22 18:58:04 +00:00
|
|
|
{
|
|
|
|
name = ["boot" "initrd" "enableSplashScreen"];
|
|
|
|
default = true;
|
|
|
|
description = "
|
|
|
|
Whether to show a nice splash screen while booting.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-27 16:26:51 +00:00
|
|
|
{
|
2006-11-27 15:07:46 +00:00
|
|
|
name = ["networking" "useDHCP"];
|
|
|
|
default = true;
|
|
|
|
description = "
|
|
|
|
Whether to use DHCP to obtain an IP adress and other
|
|
|
|
configuration for all network interfaces that are not manually
|
|
|
|
configured.
|
2006-11-27 16:26:51 +00:00
|
|
|
";
|
|
|
|
}
|
2006-11-27 15:07:46 +00:00
|
|
|
|
2006-12-11 16:10:23 +00:00
|
|
|
|
2006-11-27 16:26:51 +00:00
|
|
|
{
|
2006-11-27 15:07:46 +00:00
|
|
|
name = ["networking" "interfaces"];
|
|
|
|
default = [];
|
|
|
|
example = [
|
|
|
|
{ interface = "eth0";
|
|
|
|
ipAddress = "131.211.84.78";
|
|
|
|
netmask = "255.255.255.128";
|
|
|
|
gateway = "131.211.84.1";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
description = "
|
|
|
|
The configuration for each network interface. If
|
|
|
|
<option>networking.useDHCP</option> is true, then each interface
|
|
|
|
not listed here will be configured using DHCP.
|
2006-11-27 16:26:51 +00:00
|
|
|
";
|
|
|
|
}
|
2006-11-27 15:07:46 +00:00
|
|
|
|
2006-12-11 16:10:23 +00:00
|
|
|
|
2006-11-27 16:26:51 +00:00
|
|
|
{
|
2006-12-21 01:07:23 +00:00
|
|
|
name = ["fileSystems"];
|
|
|
|
default = [];
|
2006-11-27 15:07:46 +00:00
|
|
|
example = [
|
2006-12-21 00:16:20 +00:00
|
|
|
{ mountPoint = "/";
|
|
|
|
device = "/dev/hda1";
|
|
|
|
}
|
|
|
|
{ mountPoint = "/data";
|
|
|
|
device = "/dev/hda2";
|
2006-12-21 14:44:22 +00:00
|
|
|
fsType = "ext3";
|
2006-12-21 00:16:20 +00:00
|
|
|
options = "data=journal";
|
2006-11-27 15:07:46 +00:00
|
|
|
}
|
2007-01-10 13:58:48 +00:00
|
|
|
{ mountPoint = "/bigdisk";
|
|
|
|
label = "bigdisk";
|
|
|
|
}
|
2006-11-27 15:07:46 +00:00
|
|
|
];
|
|
|
|
description = "
|
2006-12-21 00:16:20 +00:00
|
|
|
The file systems to be mounted. It must include an entry for
|
2006-12-21 01:07:23 +00:00
|
|
|
the root directory (<literal>mountPoint = \"/\"</literal>) if
|
|
|
|
<literal>boot.autoDetectRootDevice</literal> is not set. Each
|
|
|
|
entry in the list is an attribute set with the following fields:
|
|
|
|
<literal>mountPoint</literal>, <literal>device</literal>,
|
2006-12-21 14:44:22 +00:00
|
|
|
<literal>fsType</literal> (a file system type recognised by
|
2006-12-21 01:07:23 +00:00
|
|
|
<command>mount</command>; defaults to
|
2006-12-21 14:44:22 +00:00
|
|
|
<literal>\"auto\"</literal>), and <literal>options</literal>
|
|
|
|
(the mount options passed to <command>mount</command> using the
|
|
|
|
<option>-o</option> flag; defaults to <literal>\"defaults\"</literal>).
|
2007-01-10 13:58:48 +00:00
|
|
|
|
|
|
|
Instead of specifying <literal>device</literal>, you can also
|
2007-01-23 11:18:23 +00:00
|
|
|
specify a volume label (<literal>label</literal>) for file
|
2007-01-10 13:58:48 +00:00
|
|
|
systems that support it, such as ext2/ext3 (see <command>mke2fs
|
|
|
|
-L</command>).
|
2006-11-27 15:07:46 +00:00
|
|
|
";
|
2006-11-27 16:26:51 +00:00
|
|
|
}
|
2006-11-27 15:07:46 +00:00
|
|
|
|
2006-12-18 17:41:57 +00:00
|
|
|
|
2006-12-21 01:07:23 +00:00
|
|
|
{
|
|
|
|
name = ["swapDevices"];
|
|
|
|
default = [];
|
2007-01-10 13:07:57 +00:00
|
|
|
example = [
|
|
|
|
{device="/dev/hda7";}
|
|
|
|
{device="/var/swapfile";}
|
|
|
|
{label="bigswap";}
|
|
|
|
];
|
2006-12-21 01:07:23 +00:00
|
|
|
description = "
|
|
|
|
The swap devices and swap files. These must have been
|
2007-01-10 13:07:57 +00:00
|
|
|
initialised using <command>mkswap</command>. Each element
|
|
|
|
should be an attribute set specifying either the path of the
|
|
|
|
swap device or file (<literal>device</literal>) or the label
|
|
|
|
of the swap device (<literal>label</literal>, see
|
2007-01-23 11:06:31 +00:00
|
|
|
<command>mkswap -L</command>). Using a label is
|
2007-01-10 13:07:57 +00:00
|
|
|
recommended.
|
2006-12-21 01:07:23 +00:00
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-18 17:41:57 +00:00
|
|
|
{
|
|
|
|
name = ["services" "extraJobs"];
|
|
|
|
default = [];
|
|
|
|
description = "
|
|
|
|
Additional Upstart jobs.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
2006-12-11 16:10:23 +00:00
|
|
|
|
2006-11-27 16:26:51 +00:00
|
|
|
{
|
2006-11-27 15:07:46 +00:00
|
|
|
name = ["services" "syslogd" "tty"];
|
|
|
|
default = 10;
|
|
|
|
description = "
|
|
|
|
The tty device on which syslogd will print important log
|
|
|
|
messages.
|
|
|
|
";
|
2006-11-27 16:26:51 +00:00
|
|
|
}
|
2006-12-11 16:10:23 +00:00
|
|
|
|
|
|
|
|
2007-01-08 22:41:41 +00:00
|
|
|
{
|
|
|
|
name = ["services" "ttyBackgrounds" "enable"];
|
|
|
|
default = true;
|
|
|
|
description = "
|
|
|
|
Whether to enable graphical backgrounds for the virtual consoles.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["services" "ttyBackgrounds" "defaultTheme"];
|
|
|
|
default = pkgs.fetchurl {
|
|
|
|
url = http://www.bootsplash.de/files/themes/Theme-BabyTux.tar.bz2;
|
|
|
|
md5 = "a6d89d1c1cff3b6a08e2f526f2eab4e0";
|
|
|
|
};
|
|
|
|
description = "
|
|
|
|
The default theme for the virtual consoles. Themes can be found
|
2007-01-23 11:06:31 +00:00
|
|
|
at <link xlink:href='http://www.bootsplash.de/' />.
|
2007-01-08 22:41:41 +00:00
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["services" "ttyBackgrounds" "defaultSpecificThemes"];
|
|
|
|
default = [
|
|
|
|
{ tty = 6;
|
|
|
|
theme = pkgs.fetchurl { # Yeah!
|
|
|
|
url = http://www.bootsplash.de/files/themes/Theme-Pativo.tar.bz2;
|
|
|
|
md5 = "9e13beaaadf88d43a5293e7ab757d569";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
{ tty = 10;
|
|
|
|
theme = pkgs.fetchurl {
|
|
|
|
url = http://www.bootsplash.de/files/themes/Theme-GNU.tar.bz2;
|
|
|
|
md5 = "61969309d23c631e57b0a311102ef034";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
description = "
|
|
|
|
This option sets specific themes for virtual consoles. If you
|
|
|
|
just want to set themes for additional consoles, use
|
|
|
|
<option>services.ttyBackgrounds.specificThemes</option>.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["services" "ttyBackgrounds" "specificThemes"];
|
|
|
|
default = [
|
|
|
|
];
|
|
|
|
description = "
|
|
|
|
This option allows you to set specific themes for virtual
|
|
|
|
consoles.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-27 16:26:51 +00:00
|
|
|
{
|
2006-11-27 15:07:46 +00:00
|
|
|
name = ["services" "mingetty" "ttys"];
|
|
|
|
default = [1 2 3 4 5 6];
|
|
|
|
description = "
|
|
|
|
The list of tty (virtual console) devices on which to start a
|
|
|
|
login prompt.
|
|
|
|
";
|
2006-11-27 16:26:51 +00:00
|
|
|
}
|
2006-12-11 16:10:23 +00:00
|
|
|
|
2007-01-23 11:18:23 +00:00
|
|
|
|
|
|
|
/*
|
2006-11-27 16:26:51 +00:00
|
|
|
{
|
2006-11-27 15:07:46 +00:00
|
|
|
name = ["services" "mingetty" "waitOnMounts"];
|
|
|
|
default = false;
|
|
|
|
description = "
|
|
|
|
Whether the login prompts on the virtual consoles will be
|
|
|
|
started before or after all file systems have been mounted. By
|
|
|
|
default we don't wait, but if for example your /home is on a
|
|
|
|
separate partition, you may want to turn this on.
|
|
|
|
";
|
2006-11-27 16:26:51 +00:00
|
|
|
}
|
2007-01-23 11:18:23 +00:00
|
|
|
*/
|
2006-11-27 15:07:46 +00:00
|
|
|
|
2006-12-11 16:10:23 +00:00
|
|
|
|
2006-11-27 16:26:51 +00:00
|
|
|
{
|
2006-11-27 15:07:46 +00:00
|
|
|
name = ["services" "sshd" "enable"];
|
|
|
|
default = false;
|
|
|
|
description = "
|
|
|
|
Whether to enable the Secure Shell daemon, which allows secure
|
|
|
|
remote logins.
|
|
|
|
";
|
2006-11-27 16:26:51 +00:00
|
|
|
}
|
2006-11-27 15:07:46 +00:00
|
|
|
|
2006-12-11 16:10:23 +00:00
|
|
|
|
2006-11-27 16:26:51 +00:00
|
|
|
{
|
2006-11-27 15:07:46 +00:00
|
|
|
name = ["services" "sshd" "forwardX11"];
|
2007-01-07 10:19:16 +00:00
|
|
|
default = true;
|
2006-11-27 15:07:46 +00:00
|
|
|
description = "
|
|
|
|
Whether to enable sshd to forward X11 connections.
|
|
|
|
";
|
2006-11-27 16:26:51 +00:00
|
|
|
}
|
2006-11-27 15:07:46 +00:00
|
|
|
|
2006-12-11 16:10:23 +00:00
|
|
|
|
2007-01-10 17:19:17 +00:00
|
|
|
{
|
|
|
|
name = ["services" "sshd" "allowSFTP"];
|
|
|
|
default = true;
|
|
|
|
description = "
|
|
|
|
Whether to enable the SFTP subsystem in the SSH daemon. This
|
2007-01-23 11:06:31 +00:00
|
|
|
enables the use of commands such as <command>sftp</command> and
|
|
|
|
<command>sshfs</command>.
|
2007-01-10 17:19:17 +00:00
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-21 23:43:17 +00:00
|
|
|
{
|
|
|
|
name = ["services" "ntp" "enable"];
|
|
|
|
default = true;
|
|
|
|
description = "
|
|
|
|
Whether to synchronise your machine's time using the NTP
|
|
|
|
protocol.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["services" "ntp" "servers"];
|
|
|
|
default = [
|
|
|
|
"0.pool.ntp.org"
|
|
|
|
"1.pool.ntp.org"
|
|
|
|
"2.pool.ntp.org"
|
|
|
|
];
|
|
|
|
description = "
|
|
|
|
The set of NTP servers from which to synchronise.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-16 18:24:49 +00:00
|
|
|
{
|
|
|
|
name = ["services" "xserver" "enable"];
|
|
|
|
default = false;
|
|
|
|
description = "
|
|
|
|
Whether to enable the X server.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-18 19:20:03 +00:00
|
|
|
{
|
|
|
|
name = ["services" "httpd" "enable"];
|
|
|
|
default = false;
|
|
|
|
description = "
|
|
|
|
Whether to enable the Apache httpd server.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-18 19:46:48 +00:00
|
|
|
{
|
|
|
|
name = ["services" "httpd" "user"];
|
|
|
|
default = "wwwrun";
|
|
|
|
description = "
|
|
|
|
User account under which httpd runs. The account is created
|
|
|
|
automatically if it doesn't exist.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["services" "httpd" "group"];
|
|
|
|
default = "wwwrun";
|
|
|
|
description = "
|
|
|
|
Group under which httpd runs. The account is created
|
|
|
|
automatically if it doesn't exist.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["services" "httpd" "hostName"];
|
|
|
|
default = "localhost";
|
|
|
|
description = "
|
|
|
|
Canonical hostname for the server.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["services" "httpd" "httpPort"];
|
|
|
|
default = 80;
|
|
|
|
description = "
|
|
|
|
Port for unencrypted HTTP requests.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["services" "httpd" "httpsPort"];
|
|
|
|
default = 443;
|
|
|
|
description = "
|
|
|
|
Port for encrypted HTTP requests.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["services" "httpd" "adminAddr"];
|
|
|
|
example = "admin@example.org";
|
|
|
|
description = "
|
|
|
|
E-mail address of the server administrator.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["services" "httpd" "logDir"];
|
|
|
|
default = "/var/log/httpd";
|
|
|
|
description = "
|
|
|
|
Directory for Apache's log files. It is created automatically.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["services" "httpd" "stateDir"];
|
|
|
|
default = "/var/run/httpd";
|
|
|
|
description = "
|
|
|
|
Directory for Apache's transient runtime state (such as PID
|
|
|
|
files). It is created automatically. Note that the default,
|
2007-01-23 11:06:31 +00:00
|
|
|
<filename>/var/run/httpd</filename>, is deleted at boot time.
|
2006-12-18 19:46:48 +00:00
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-19 01:03:15 +00:00
|
|
|
{
|
|
|
|
name = ["services" "httpd" "subservices" "subversion" "enable"];
|
|
|
|
default = false;
|
|
|
|
description = "
|
|
|
|
Whether to enable the Subversion subservice in the webserver.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["services" "httpd" "subservices" "subversion" "notificationSender"];
|
|
|
|
example = "svn-server@example.org";
|
|
|
|
description = "
|
|
|
|
The email address used in the Sender field of commit
|
|
|
|
notification messages sent by the Subversion subservice.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["services" "httpd" "subservices" "subversion" "autoVersioning"];
|
|
|
|
default = false;
|
|
|
|
description = "
|
|
|
|
Whether you want the Subversion subservice to support
|
|
|
|
auto-versioning, which enables Subversion repositories to be
|
|
|
|
mounted as read/writable file systems on operating systems that
|
|
|
|
support WebDAV.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-09 21:19:06 +00:00
|
|
|
{
|
|
|
|
name = ["installer" "nixpkgsURL"];
|
|
|
|
default = "";
|
|
|
|
example = http://nix.cs.uu.nl/dist/nix/nixpkgs-0.11pre7577;
|
|
|
|
description = "
|
|
|
|
URL of the Nixpkgs distribution to use when building the
|
|
|
|
installation CD.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-11 16:29:23 +00:00
|
|
|
{
|
|
|
|
name = ["security" "setuidPrograms"];
|
|
|
|
default = ["passwd" "su" "crontab"];
|
|
|
|
description = "
|
|
|
|
Only the programs listed here will be made setuid root (through
|
|
|
|
a wrapper program).
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-16 16:09:43 +00:00
|
|
|
{
|
|
|
|
name = ["users" "ldap" "enable"];
|
|
|
|
default = false;
|
|
|
|
description = "
|
|
|
|
Whether to enable authentication against an LDAP server.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["users" "ldap" "server"];
|
|
|
|
example = "ldap://ldap.example.org/";
|
|
|
|
description = "
|
|
|
|
The URL of the LDAP server.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["users" "ldap" "base"];
|
|
|
|
example = "dc=example,dc=org";
|
|
|
|
description = "
|
|
|
|
The distinguished name of the search base.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = ["users" "ldap" "useTLS"];
|
|
|
|
default = false;
|
|
|
|
description = "
|
|
|
|
If enabled, use TLS (encryption) over an LDAP (port 389)
|
|
|
|
connection. The alternative is to specify an LDAPS server (port
|
|
|
|
636) in <option>users.ldap.server</option> or to forego
|
|
|
|
security.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
2007-01-22 16:42:29 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
name = ["fonts" "enableFontConfig"];
|
|
|
|
default = true;
|
|
|
|
description = "
|
|
|
|
If enabled, a fontconfig configuration file will be built
|
|
|
|
pointing to a set of default fonts. If you don't care about
|
|
|
|
running X11 applications or any other program that uses
|
|
|
|
fontconfig, you can turn this option off and prevent a
|
|
|
|
dependency on all those fonts.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
2007-01-16 16:09:43 +00:00
|
|
|
|
2006-11-27 15:07:46 +00:00
|
|
|
]
|