15 lines
265 B
Nix
15 lines
265 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
options.features.desktop.media.pocket-casts.enable = lib.mkEnableOption "Enable Pocket Casts";
|
|
|
|
config = lib.mkIf config.features.desktop.media.pocket-casts.enable {
|
|
home.packages = with pkgs; [ pocket-casts ];
|
|
};
|
|
}
|