16 lines
246 B
Nix
16 lines
246 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
cfg = config.pim.tidal;
|
|
in {
|
|
options.pim.tidal.enable = lib.mkEnableOption "tidal";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
supercollider-with-sc3-plugins
|
|
];
|
|
};
|
|
}
|