summaryrefslogtreecommitdiffstats
path: root/makefu/3modules/bump-distrowatch.nix
blob: 18426cdccf545d9e6a6ac3b215d52b06042d413a (plain)
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
{ config, lib, pkgs, ... }:

let
  cfg = config.makefu.distrobump;

  imp = {
    systemd.services.distrobump = {
      after = [ "network.target" ];
      wantedBy = [ "multi-user.target" ];
      path = [ pkgs.curl ];
      restartIfChanged = false;
      startAt = "daily";
      serviceConfig = {
        PrivateTmp = true;
        Type = "oneshot";
        ExecStart = pkgs.writeDash "bump-distrowatch" ''
          set -euf
          UA='Mozilla/5.0 (X11; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'
          curl -Lvc /tmp/cookie.jar -A "$UA" 'https://distrowatch.com/' >/dev/null
          sleep $(shuf -i 3-15 -n1).$(shuf -i 0-9 -n1)
          curl -Lvc /tmp/cookie.jar -A "$UA" -e 'https://distrowatch.com/' 'https://distrowatch.com/nixos?frphr' >/dev/null
        '';
        RandomizedDelaySec = 28800;
      };
    };
  };
in
{
    options.makefu.distrobump.enable = lib.mkEnableOption "distrobump";
    config = lib.mkIf cfg.enable imp;
}