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
2018-01-05 00:16:09 +01:00

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.";
};
};
}