dotfiles/modules/profiles/ripping.nix

24 lines
308 B
Nix
Raw Normal View History

2023-05-11 17:33:14 +02:00
{ lib
, config
, pkgs
, ...
}:
with lib;
let
cfg = config.my.profiles.ripping;
in
{
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
];
};
}