mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-06 16:57:08 +00:00
19 lines
407 B
Nix
19 lines
407 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.";
|
|
};
|
|
|
|
system.defaults.smb.ServerDescription = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
description = "Hostname to use for sharing services.";
|
|
};
|
|
};
|
|
}
|