volnoti: fix package option namespace (#2227)
This commit is contained in:
parent
ae8cb242f2
commit
e08c696524
1 changed files with 10 additions and 8 deletions
|
@ -10,15 +10,17 @@ in {
|
||||||
meta.maintainers = [ maintainers.imalison ];
|
meta.maintainers = [ maintainers.imalison ];
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
services.volnoti = { enable = mkEnableOption "Volnoti volume HUD daemon"; };
|
services.volnoti = {
|
||||||
|
enable = mkEnableOption "Volnoti volume HUD daemon";
|
||||||
|
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
type = types.package;
|
type = types.package;
|
||||||
default = pkgs.volnoti;
|
default = pkgs.volnoti;
|
||||||
defaultText = literalExample "pkgs.volnoti";
|
defaultText = literalExample "pkgs.volnoti";
|
||||||
description = ''
|
description = ''
|
||||||
Package containing the <command>volnoti</command> program.
|
Package containing the <command>volnoti</command> program.
|
||||||
'';
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue