966f6e0fb0
svn path=/nixos/trunk/; revision=7534
34 lines
486 B
Nix
34 lines
486 B
Nix
{
|
|
boot = {
|
|
autoDetectRootDevice = false;
|
|
rootDevice = "/dev/hda1";
|
|
readOnlyRoot = false;
|
|
grubDevice = "/dev/hda";
|
|
};
|
|
|
|
services = {
|
|
|
|
sshd = {
|
|
enable = true;
|
|
};
|
|
|
|
httpd = {
|
|
enable = true;
|
|
adminAddr = "admin@example.org";
|
|
|
|
subservices = {
|
|
|
|
subversion = {
|
|
enable = true;
|
|
dataDir = "/data/subversion";
|
|
notificationSender = "svn@example.org";
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|