summaryrefslogtreecommitdiff
path: root/systems/afrodite/services.nix
blob: 24a8fe11bc0507532af049a4e37240faf2277fe0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{...}: {
  imports = [
    ../../components/services/openssh.nix
    ../../components/services/caddy.nix
    ../../components/services/bind.nix
  ];

  # Custom modules
  openssh.enable = true;
  caddy.enable = true;
  bind.enable = true;
}