dotfiles/machines/common/darwin/options.nix

9 lines
204 B
Nix
Raw Normal View History

{lib, ...}: let
inherit (lib) mkOption types;
in {
options.location = {
latitude = mkOption {type = types.nullOr types.float;};
longitude = mkOption {type = types.nullOr types.float;};
};
}