2024-02-29 09:53:34 -05:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
let
|
2024-06-24 11:38:28 -04:00
|
|
|
cfg = config.aux.system.apps.media;
|
2024-02-29 09:53:34 -05:00
|
|
|
in
|
|
|
|
{
|
2024-05-07 18:02:59 -04:00
|
|
|
options = {
|
2024-08-02 17:55:48 -04:00
|
|
|
aux.system.apps.media.enable = lib.mkEnableOption "Enables media playback and editing apps";
|
2024-05-07 18:02:59 -04:00
|
|
|
};
|
2024-02-29 09:53:34 -05:00
|
|
|
|
2024-08-02 17:55:48 -04:00
|
|
|
config = lib.mkIf cfg.enable {
|
2024-06-25 14:13:15 -04:00
|
|
|
aux.system.ui.flatpak = {
|
|
|
|
enable = true;
|
2024-05-07 18:02:59 -04:00
|
|
|
packages = [
|
2024-08-03 11:43:18 -04:00
|
|
|
"app.drey.EarTag"
|
2024-05-07 18:02:59 -04:00
|
|
|
"com.calibre_ebook.calibre"
|
|
|
|
"com.github.unrud.VideoDownloader"
|
2024-07-02 18:15:37 -04:00
|
|
|
"io.freetubeapp.FreeTube"
|
2024-05-07 18:02:59 -04:00
|
|
|
"org.kde.krita"
|
|
|
|
"org.kde.KStyle.Adwaita//5.15-23.08" # Retrieved from https://docs.flatpak.org/en/latest/desktop-integration.html
|
|
|
|
"org.kde.KStyle.Adwaita//6.6"
|
|
|
|
"org.kde.WaylandDecoration.QAdwaitaDecorations//5.15-23.08" # Replaced deprecated QGnomePlatform https://wiki.archlinux.org/title/Uniform_look_for_Qt_and_GTK_applications
|
|
|
|
"org.kde.WaylandDecoration.QAdwaitaDecorations//6.6"
|
2024-08-16 22:35:49 -04:00
|
|
|
"org.videolan.VLC"
|
2024-05-07 18:02:59 -04:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|