summaryrefslogtreecommitdiff
path: root/servers/cgit.nix
blob: e5a32dac02685536c6c426403b0c1b76aa243aee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  config,
  pkgs,
  lib,
  modulesPath,
  ...
}:
{
  imports = [
    (modulesPath + "/installer/scan/not-detected.nix")
    (modulesPath + "/profiles/qemu-guest.nix")
    ./cgit-hardware-configuration.nix
  ];

  networking.hostName = "cgit";

  landau.services = {
    cgit.enable = true;
    gitolite.enable = true;
  };

  hostings.beget.enable = true;
}