1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-08 17:56:59 +00:00
nix-darwin/modules/system/defaults/smb.nix

20 lines
407 B
Nix
Raw Normal View History

2018-01-05 00:15:11 +01:00
{ 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.";
};
2018-01-05 00:15:11 +01:00
};
}