refactor *started*

This commit is contained in:
martyTF 2026-03-30 22:03:03 +02:00
parent d0413cb830
commit db2103a37d
103 changed files with 1008 additions and 786 deletions

View file

@ -0,0 +1,26 @@
{
config,
pkgs,
inputs,
lib,
...
}:
{
options = {
apps.video = {
base.enable = lib.mkEnableOption "enable basic video";
editing.enable = lib.mkEnableOption "enable video editing";
media.enable = lib.mkEnableOption "enable video media";
};
};
config = {
environment.systemPackages = with pkgs; [
(lib.mkIf (apps.video.base.enable) mpv)
(lib.mkIf (apps.video.editing.enable) kdePackages.kdenlive)
(lib.mkIf (apps.video.media.enable) jellyfin-desktop)
(lib.mkIf (apps.video.media.enable) pipeline)
];
};
}