mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-08 17:56:59 +00:00
13 lines
224 B
Nix
13 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.";
|
|
};
|
|
};
|
|
}
|