From e08c696524dcbd761a42160f3f288ee620527f66 Mon Sep 17 00:00:00 2001 From: Nicolas Berbiche Date: Wed, 28 Jul 2021 15:39:29 -0400 Subject: [PATCH] volnoti: fix package option namespace (#2227) --- modules/services/volnoti.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/modules/services/volnoti.nix b/modules/services/volnoti.nix index 466fe4a5c..dcdc82843 100644 --- a/modules/services/volnoti.nix +++ b/modules/services/volnoti.nix @@ -10,15 +10,17 @@ in { meta.maintainers = [ maintainers.imalison ]; options = { - services.volnoti = { enable = mkEnableOption "Volnoti volume HUD daemon"; }; + services.volnoti = { + enable = mkEnableOption "Volnoti volume HUD daemon"; - package = mkOption { - type = types.package; - default = pkgs.volnoti; - defaultText = literalExample "pkgs.volnoti"; - description = '' - Package containing the volnoti program. - ''; + package = mkOption { + type = types.package; + default = pkgs.volnoti; + defaultText = literalExample "pkgs.volnoti"; + description = '' + Package containing the volnoti program. + ''; + }; }; };