summary refs log tree commit diff
path: root/nixos/modules/services/misc/siproxd.nix
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2020-11-22 17:23:53 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2020-11-23 08:42:51 +1000
commitdbbd289982ba87aea30453b1e6fb37f33e6bdb72 (patch)
treed61cff494a9a49b8468faec15df34c023449b35a /nixos/modules/services/misc/siproxd.nix
parentbbcbaeb54d1d08783771f886e04cf8e8afc82651 (diff)
downloadnixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.tar
nixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.tar.gz
nixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.tar.bz2
nixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.tar.lz
nixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.tar.xz
nixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.tar.zst
nixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.zip
nixos/*: fix indentation
Diffstat (limited to 'nixos/modules/services/misc/siproxd.nix')
-rw-r--r--nixos/modules/services/misc/siproxd.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/nixos/modules/services/misc/siproxd.nix b/nixos/modules/services/misc/siproxd.nix
index 0e87fc461d3..20fe0793b84 100644
--- a/nixos/modules/services/misc/siproxd.nix
+++ b/nixos/modules/services/misc/siproxd.nix
@@ -39,7 +39,7 @@ in
         default = false;
         description = ''
           Whether to enable the Siproxd SIP
-	  proxy/masquerading daemon.
+          proxy/masquerading daemon.
         '';
       };
 
@@ -57,29 +57,29 @@ in
 
       hostsAllowReg = mkOption {
         type = types.listOf types.str;
-	default = [ ];
+        default = [ ];
         example = [ "192.168.1.0/24" "192.168.2.0/24" ];
-	description = ''
+        description = ''
           Acess control list for incoming SIP registrations.
         '';
       };
 
       hostsAllowSip = mkOption {
         type = types.listOf types.str;
-	default = [ ];
+        default = [ ];
         example = [ "123.45.0.0/16" "123.46.0.0/16" ];
-	description = ''
+        description = ''
           Acess control list for incoming SIP traffic.
         '';
       };
 
       hostsDenySip = mkOption {
         type = types.listOf types.str;
-	default = [ ];
+        default = [ ];
         example = [ "10.0.0.0/8" "11.0.0.0/8" ];
-	description = ''
+        description = ''
           Acess control list for denying incoming
-	   SIP registrations and traffic.
+          SIP registrations and traffic.
         '';
       };
 
@@ -87,7 +87,7 @@ in
         type = types.int;
         default = 5060;
         description = ''
-	  Port to listen for incoming SIP messages.
+          Port to listen for incoming SIP messages.
         '';
       };