{
  config,
  lib,
  pkgs,
  ...
}:

{
  imports = [ ];

  options.me.buildingIso = lib.mkOption {
    type = lib.types.bool;
    default = false;
    example = true;
    description = "Whether we are building an ISO image.";
  };

}