punkfairie
15372b7726
There was little point to doing this anyway as project-wide find & replace is trivial.
19 lines
276 B
Nix
19 lines
276 B
Nix
{
|
|
lib,
|
|
config,
|
|
namespace,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf;
|
|
inherit (lib.marleyos) mkEnableModule;
|
|
|
|
cfg = config.marleyos.programs.ncmpcpp;
|
|
in
|
|
{
|
|
options = mkEnableModule "programs.ncmpcpp";
|
|
|
|
config = mkIf cfg.enable {
|
|
programs.ncmpcpp.enable = true;
|
|
};
|
|
}
|