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

@ -3,7 +3,6 @@
{
homeManagerModules = {
gtk.enable = true;
pocket-casts.enable = true;
tmux-sessionizer.enable = true;
};
}

View file

@ -10,7 +10,6 @@
directory = "$HOME/Documents/wiki/notes";
};
pocket-casts.enable = true;
tmux.enable = true;
tmux-sessionizer.enable = true;
};

View file

@ -9,7 +9,6 @@
directory = "$HOME/Documents/wiki/notes";
};
pocket-casts.enable = true;
tmux.enable = true;
tmux-sessionizer.enable = true;
};

View file

@ -18,7 +18,5 @@
pkgs
;
})
./desktop
];
}

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 ];
};
}