defaults: add option for NetBIOSName
This commit is contained in:
parent
3dfc5da1e7
commit
7eb4e21075
5 changed files with 33 additions and 8 deletions
13
modules/system/defaults/smb.nix
Normal file
13
modules/system/defaults/smb.nix
Normal 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.";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue