summary refs log tree commit diff
path: root/doc/config-examples/svn-server.nix
blob: 68a3374987f785dc32b5e7d69f197c10596fc635 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  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";
        };

      };

    };

  };

}