{
  lib,
  ...
}:
let
  inherit (lib) types mkOption;
in
{
  options.is-nixos = mkOption {
    type = types.bool;
  };
}