From 7c122d687b196cd87112cc92a1bfb7f908480fd5 Mon Sep 17 00:00:00 2001 From: Bernardo Meurer Date: Thu, 12 Aug 2021 00:37:36 -0700 Subject: [PATCH] nixos/hqplayerd: sort options --- nixos/modules/services/audio/hqplayerd.nix | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/nixos/modules/services/audio/hqplayerd.nix b/nixos/modules/services/audio/hqplayerd.nix index 6eeaffce1b15..3da3635eb98b 100644 --- a/nixos/modules/services/audio/hqplayerd.nix +++ b/nixos/modules/services/audio/hqplayerd.nix @@ -14,17 +14,6 @@ in services.hqplayerd = { enable = mkEnableOption "HQPlayer Embedded"; - licenseFile = mkOption { - type = types.nullOr types.path; - default = null; - description = '' - Path to the HQPlayer license key file. - - Without this, the service will run in trial mode and restart every 30 - minutes. - ''; - }; - auth = { username = mkOption { type = types.nullOr types.str; @@ -49,6 +38,17 @@ in }; }; + licenseFile = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + Path to the HQPlayer license key file. + + Without this, the service will run in trial mode and restart every 30 + minutes. + ''; + }; + openFirewall = mkOption { type = types.bool; default = false;