diff options
| author | Daiderd Jordan <daiderd@gmail.com> | 2018-01-17 22:36:06 +0100 |
|---|---|---|
| committer | Daiderd Jordan <daiderd@gmail.com> | 2018-01-17 22:36:06 +0100 |
| commit | 81bdd38e8d7a3221bfb59c084fdfc0bac9b27bf9 (patch) | |
| tree | 5e47f4bb1734558918100e03cf26b9d8e506681d /modules/system | |
| parent | c5ecf11b578965cfc26810d6d85c3dc6e72fda6d (diff) | |
defaults: add ServerDescription for sharing services
Diffstat (limited to 'modules/system')
| -rw-r--r-- | modules/system/defaults/smb.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/system/defaults/smb.nix b/modules/system/defaults/smb.nix index edc9d06..0bc8be5 100644 --- a/modules/system/defaults/smb.nix +++ b/modules/system/defaults/smb.nix @@ -9,5 +9,11 @@ with lib; 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."; + }; }; } |
