about summary refs log tree commit diff
path: root/nixos/modules/programs/mosh.nix
diff options
context:
space:
mode:
authormichael bishop <cleverca22@gmail.com>2016-12-16 12:58:40 -0400
committerJörg Thalheim <joerg@higgsboson.tk>2016-12-16 18:29:25 +0100
commite5cefadef7995b3eafacaf6f1f9099da0f7ccf79 (patch)
tree7921e0da0b25c1ba82087339d83bde3fed3cb284 /nixos/modules/programs/mosh.nix
parent1946e872c04079f25e30ed9b3fa9e09f9f9e661c (diff)
fix indentation in several nixos option descriptions
Diffstat (limited to 'nixos/modules/programs/mosh.nix')
-rw-r--r--nixos/modules/programs/mosh.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/nixos/modules/programs/mosh.nix b/nixos/modules/programs/mosh.nix
index b478f8e180fae..1c29eddf01d67 100644
--- a/nixos/modules/programs/mosh.nix
+++ b/nixos/modules/programs/mosh.nix
@@ -9,14 +9,14 @@ let
 in
 {
   options.programs.mosh = {
-      enable = mkOption {
-	description = ''
-	  Whether to enable mosh. Note, this will open ports in your firewall!
-	'';
-        default = false;
-	example = true;
-	type = lib.types.bool;
-      };
+    enable = mkOption {
+      description = ''
+        Whether to enable mosh. Note, this will open ports in your firewall!
+      '';
+      default = false;
+      example = true;
+      type = lib.types.bool;
+    };
   };
 
   config = mkIf cfg.enable {