aboutsummaryrefslogtreecommitdiff
path: root/cluster/staging/site/neptune.nix
blob: 506da652f07a292666cf2d30aea51e4a64c92883 (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
{ config, pkgs, ... }:

{
  deuxfleurs.site_name = "neptune";
  deuxfleurs.lan_default_gateway = "192.168.1.1";
  deuxfleurs.ipv6_default_gateway = "2001:910:1204:1::1";
  deuxfleurs.lan_ip_prefix_length = 24;
  deuxfleurs.ipv6_prefix_length = 64;
  deuxfleurs.nameservers = [ "192.168.1.1" ];
  deuxfleurs.cname_target = "neptune.site.staging.deuxfleurs.org.";

  # no public ipv4 is used for the staging cluster on Neptune,
  # because the Internet connection is already used for the prod cluster
  # deuxfleurs.public_ipv4 = "77.207.15.215";

  networking.firewall.allowedTCPPorts = [ 80 443 ];

  services.cron = {
    enable = true;
    systemCronJobs = [
      "0 2 * * * root nix-collect-garbage --delete-older-than 10d >> /root/nix_gc_log 2>&1"
      "30 2 1 * * root docker run --rm -v /var/lib/drone/nix:/nix nixpkgs/nix:nixos-21.05 nix-collect-garbage --delete-older-than 30d >> /root/drone_nix_gc_log 2>&1"
    ];
  };
}