37 lines
470 B
Nix
37 lines
470 B
Nix
{
|
|
boot = {
|
|
loader.grub.device = "/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";
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|