summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2018-01-17 22:36:06 +0100
committerDaiderd Jordan <daiderd@gmail.com>2018-01-17 22:36:06 +0100
commit81bdd38e8d7a3221bfb59c084fdfc0bac9b27bf9 (patch)
tree5e47f4bb1734558918100e03cf26b9d8e506681d /modules/system
parentc5ecf11b578965cfc26810d6d85c3dc6e72fda6d (diff)
defaults: add ServerDescription for sharing services
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/defaults/smb.nix6
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.";
+ };
};
}