dotfiles/system/hosts/phone/options.nix

13 lines
140 B
Nix
Raw Normal View History

2023-12-24 14:27:43 +07:00
{ lib
, ...
}:
{
options.phone = {
mac = lib.mkOption {
description = "mac address";
type = lib.types.str;
};
};
}