summary refs log tree commit diff
path: root/nixos/modules/services/backup/bacula.nix
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-07 01:12:26 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-07 01:12:26 +0200
commit18851071e618371e9c7fe2ac187661e2e5064a23 (patch)
tree28ad2fd0ec14509b44cc653816f618c4ab136f7b /nixos/modules/services/backup/bacula.nix
parent45b86d69818e849ef6bf51c35e6c73a8d7e58074 (diff)
downloadnixpkgs-18851071e618371e9c7fe2ac187661e2e5064a23.tar
nixpkgs-18851071e618371e9c7fe2ac187661e2e5064a23.tar.gz
nixpkgs-18851071e618371e9c7fe2ac187661e2e5064a23.tar.bz2
nixpkgs-18851071e618371e9c7fe2ac187661e2e5064a23.tar.lz
nixpkgs-18851071e618371e9c7fe2ac187661e2e5064a23.tar.xz
nixpkgs-18851071e618371e9c7fe2ac187661e2e5064a23.tar.zst
nixpkgs-18851071e618371e9c7fe2ac187661e2e5064a23.zip
nixos: bacula service: re-format descriptions
Diffstat (limited to 'nixos/modules/services/backup/bacula.nix')
-rw-r--r--nixos/modules/services/backup/bacula.nix15
1 files changed, 10 insertions, 5 deletions
diff --git a/nixos/modules/services/backup/bacula.nix b/nixos/modules/services/backup/bacula.nix
index 9e3ae66f808..69f3c3f8a75 100644
--- a/nixos/modules/services/backup/bacula.nix
+++ b/nixos/modules/services/backup/bacula.nix
@@ -169,14 +169,17 @@ in {
         type = types.bool;
         default = false;
         description = ''
-          Whether to enable Bacula File Daemon.
+          Whether to enable the Bacula File Daemon.
         '';
       };
  
       name = mkOption {
         default = "${config.networking.hostName}-fd";
         description = ''
-        	The client name that must be used by the Director when connecting. Generally, it is a good idea to use a name related to the machine so that error messages can be easily identified if you have multiple Clients. This directive is required.
+          The client name that must be used by the Director when connecting.
+          Generally, it is a good idea to use a name related to the machine
+          so that error messages can be easily identified if you have multiple
+          Clients. This directive is required.
         '';
       };
  
@@ -184,7 +187,9 @@ in {
         default = 9102;
         type = types.int;
         description = ''
-        	This specifies the port number on which the Client listens for Director connections. It must agree with the FDPort specified in the Client resource of the Director's configuration file. The default is 9102.
+          This specifies the port number on which the Client listens for
+          Director connections. It must agree with the FDPort specified in
+          the Client resource of the Director's configuration file.
         '';
       };
  
@@ -202,7 +207,7 @@ in {
         description = ''
           Extra configuration to be passed in Client directive.
         '';
-        example = ''
+        example = literalExample ''
           Maximum Concurrent Jobs = 20;
           Heartbeat Interval = 30;
         '';
@@ -213,7 +218,7 @@ in {
         description = ''
           Extra configuration to be passed in Messages directive.
         '';
-        example = ''
+        example = literalExample ''
           console = all
         '';
       };