2024-11-16 18:30:58 -08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
namespace,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (lib) mkIf;
|
2024-11-16 22:34:40 -08:00
|
|
|
inherit (lib.marleyos) mkEnableModule;
|
2024-11-16 18:30:58 -08:00
|
|
|
|
2024-11-16 22:34:40 -08:00
|
|
|
cfg = config.marleyos.programs.ncmpcpp;
|
2024-11-16 18:30:58 -08:00
|
|
|
in
|
|
|
|
{
|
2024-11-16 23:05:17 -08:00
|
|
|
options.marleyos = mkEnableModule "programs.ncmpcpp";
|
2024-11-16 18:30:58 -08:00
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
programs.ncmpcpp.enable = true;
|
|
|
|
};
|
|
|
|
}
|