mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-15 17:51:01 +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.";
|
|
};
|
|
};
|
|
}
|