1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 09:58:32 +02:00

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,7 +10,8 @@ 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;
@ -21,6 +22,7 @@ in {
''; '';
}; };
}; };
};
config = mkIf cfg.enable { config = mkIf cfg.enable {
assertions = [ assertions = [