defaults: add option for NetBIOSName

This commit is contained in:
Daiderd Jordan 2018-01-05 00:15:11 +01:00
parent 3dfc5da1e7
commit 7eb4e21075
No known key found for this signature in database
GPG key ID: D02435D05B810C96
5 changed files with 33 additions and 8 deletions

View file

@ -0,0 +1,13 @@
{ config, lib, ... }:
with lib;
{
options = {
system.defaults.smb.NetBIOSName = mkOption {
type = types.nullOr types.str;
default = null;
description = "Hostname to use for NetBIOS.";
};
};
}