1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-19 14:53:03 +00:00
nix-darwin/modules/system/defaults/smb.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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;
2024-04-14 23:02:32 +02:00
description = "Hostname to use for NetBIOS.";
2018-01-05 00:15:11 +01:00
};
system.defaults.smb.ServerDescription = mkOption {
type = types.nullOr types.str;
default = null;
2024-04-14 23:02:32 +02:00
description = "Hostname to use for sharing services.";
};
2018-01-05 00:15:11 +01:00
};
}