volnoti: fix package option namespace (#2227)

This commit is contained in:
Nicolas Berbiche 2021-07-28 15:39:29 -04:00 committed by GitHub
parent ae8cb242f2
commit e08c696524
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 <command>volnoti</command> program.
'';
package = mkOption {
type = types.package;
default = pkgs.volnoti;
defaultText = literalExample "pkgs.volnoti";
description = ''
Package containing the <command>volnoti</command> program.
'';
};
};
};