dotfiles/machines/common/darwin/options.nix

11 lines
210 B
Nix
Raw Permalink Normal View History

2024-05-07 18:20:52 +02:00
{ lib, ... }:
let
inherit (lib) mkOption types;
2024-05-07 18:20:52 +02:00
in
{
options.location = {
2024-05-07 18:20:52 +02:00
latitude = mkOption { type = types.nullOr types.float; };
longitude = mkOption { type = types.nullOr types.float; };
};
}