mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-09 10:17:02 +00:00
14 lines
224 B
Nix
14 lines
224 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
options = {
|
||
|
system.defaults.smb.NetBIOSName = mkOption {
|
||
|
type = types.nullOr types.str;
|
||
|
default = null;
|
||
|
description = "Hostname to use for NetBIOS.";
|
||
|
};
|
||
|
};
|
||
|
}
|