dotfiles/system/hosts/phone/options.nix

13 lines
140 B
Nix

{ lib
, ...
}:
{
options.phone = {
mac = lib.mkOption {
description = "mac address";
type = lib.types.str;
};
};
}