diff options
| -rw-r--r-- | lib/types.nix | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/lib/types.nix b/lib/types.nix index 3eda2262f..689a2c807 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -116,6 +116,10 @@ rec {          type = listOf hostname;          default = [];        }; +      mac = mkOption { +        type = nullOr str; +        default = null; +      };        ip4 = mkOption {          type = nullOr (submodule {            options = { | 
