Remove pocket-casts

This commit is contained in:
Oliver Davies 2025-04-05 09:20:51 +01:00
parent 21198b5bf9
commit c7bfbcc965
6 changed files with 0 additions and 26 deletions

View file

@ -1,5 +0,0 @@
{
imports = [
./pocket-casts.nix
];
}

View file

@ -1,16 +0,0 @@
{
config,
lib,
pkgs,
...
}:
with lib;
{
options.homeManagerModules.pocket-casts.enable = mkEnableOption "Enable Pocket Casts";
config = mkIf config.homeManagerModules.pocket-casts.enable {
home.packages = with pkgs; [ pocket-casts ];
};
}