mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
volnoti: fix package option namespace (#2227)
This commit is contained in:
@@ -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.
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user