2023-05-11 17:33:14 +02:00
|
|
|
{ lib
|
|
|
|
, config
|
|
|
|
, pkgs
|
|
|
|
, ...
|
|
|
|
}:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.my.profiles.ripping;
|
|
|
|
in
|
2023-04-16 17:56:43 +02:00
|
|
|
|
|
|
|
{
|
2023-05-11 17:33:14 +02:00
|
|
|
options.my.profiles.ripping.enable = mkEnableOption "ripping profile";
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
# ripping
|
|
|
|
abcde
|
|
|
|
handbrake
|
|
|
|
picard
|
|
|
|
];
|
|
|
|
};
|
2023-04-16 17:56:43 +02:00
|
|
|
}
|