fix indentation in several nixos option descriptions

This commit is contained in:
michael bishop
2016-12-16 18:29:25 +01:00
committed by Jörg Thalheim
parent 1946e872c0
commit e5cefadef7
5 changed files with 29 additions and 24 deletions
+8 -8
View File
@@ -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 {