feat(sound): add noisetorch when sound is enabled

This commit is contained in:
Lucien Cartier-Tilet 2025-08-06 20:30:18 +02:00
parent 0c8e2c702d
commit 3737a61fa5
No known key found for this signature in database

View File

@ -40,5 +40,8 @@ in {
};
jack.enable = mkDefault cfg.jack;
};
programs.noisetorch = mkIf cfg.enable {
inherit (cfg) enable;
};
};
}