summary refs log tree commit diff
path: root/nixos/modules/virtualisation/rkt.nix
blob: fd662b52df5245a367ee0918f6cdc4be69b2ff7a (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.virtualisation.rkt;
in
{
  options.virtualisation.rkt = {
    enable = mkEnableOption "rkt metadata service";

    gc = {
      automatic = mkOption {
        default = true;
        type = types.bool;
        description = "Automatically run the garbage collector at a specific time.";
      };

      dates = mkOption {
        default = "03:15";
        type = types.str;
        description = ''
          Specification (in the format described by
          <citerefentry><refentrytitle>systemd.time</refentrytitle>
          <manvolnum>7</manvolnum></citerefentry>) of the time at
          which the garbage collector will run.
        '';
      };

      options = mkOption {
        default = "--grace-period=24h";
        type = types.str;
        description = ''
          Options given to <filename>rkt gc</filename> when the
          garbage collector is run automatically.
        '';
      };
    };
  };

  config = mkIf cfg.enable {
    environment.systemPackages = [ pkgs.rkt ];

    systemd.services.rkt = {
      description = "rkt metadata service";
      wantedBy = [ "multi-user.target" ];
      after = [ "network.target" ];
      serviceConfig = {
        ExecStart = "${pkgs.rkt}/bin/rkt metadata-service";
      };
    };

    systemd.services.rkt-gc = {
      description = "rkt garbage collection";
      startAt = optionalString cfg.gc.automatic cfg.gc.dates;
      serviceConfig = {
        Type = "oneshot";
        ExecStart = "${pkgs.rkt}/bin/rkt gc ${cfg.gc.options}";
      };
    };

    users.groups.rkt = {};
  };
}