File tree Expand file tree Collapse file tree 1 file changed +4
-25
lines changed
nixos/modules/services/networking Expand file tree Collapse file tree 1 file changed +4
-25
lines changed Original file line number Diff line number Diff line change 6060
6161 options = {
6262 services . murmur = {
63- enable = mkOption {
64- type = types . bool ;
65- default = false ;
66- description = "If enabled, start the Murmur Mumble server." ;
67- } ;
63+ enable = lib . mkEnableOption "Mumble server" ;
6864
69- openFirewall = mkOption {
70- type = types . bool ;
71- default = false ;
72- description = ''
73- Open ports in the firewall for the Murmur Mumble server.
74- '' ;
75- } ;
65+ openFirewall = lib . mkEnableOption "opening ports in the firewall for the Mumble server" ;
7666
7767 user = mkOption {
7868 type = types . str ;
203193 '' ;
204194 } ;
205195
206- bonjour = mkOption {
207- type = types . bool ;
208- default = false ;
209- description = ''
210- Enable Bonjour auto-discovery, which allows clients over
211- your LAN to automatically discover Murmur servers.
212- '' ;
213- } ;
196+ bonjour = lib . mkEnableOption "Bonjour auto-discovery, which allows clients over your LAN to automatically discover Mumble servers" ;
214197
215198 sendVersion = mkOption {
216199 type = types . bool ;
255238 '' ;
256239 } ;
257240
258- clientCertRequired = mkOption {
259- type = types . bool ;
260- default = false ;
261- description = "Require clients to authenticate via certificates." ;
262- } ;
241+ clientCertRequired = lib . mkEnableOption "requiring clients to authenticate via certificates" ;
263242
264243 sslCert = mkOption {
265244 type = types . str ;
You can’t perform that action at this time.
0 commit comments