d06556e274
svn path=/nixos/branches/modular-nixos/; revision=16010
37 lines
478 B
Nix
37 lines
478 B
Nix
{
|
|
boot = {
|
|
grubDevice = "/dev/sda";
|
|
};
|
|
|
|
fileSystems = [
|
|
{ mountPoint = "/";
|
|
device = "/dev/sda1";
|
|
}
|
|
];
|
|
|
|
services = {
|
|
|
|
sshd = {
|
|
enable = true;
|
|
};
|
|
|
|
httpd = {
|
|
enable = true;
|
|
adminAddr = "admin@example.org";
|
|
|
|
subservices = {
|
|
|
|
subversion = {
|
|
enable = true;
|
|
dataDir = "/data/subversion";
|
|
notificationSender = "svn@example.org";
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|