1
0
Fork 0
nix-configuration/modules/apps/media.nix

28 lines
820 B
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ config, lib, ... }:
let
2024-03-04 10:57:41 -05:00
cfg = config.host.apps.media;
2024-02-29 09:53:34 -05:00
in
with lib;
{
2024-03-04 10:57:41 -05:00
options = {
host.apps.media.enable = mkEnableOption (mdDoc "Enables media playback and editing apps");
};
2024-02-29 09:53:34 -05:00
2024-03-04 10:57:41 -05:00
config = mkIf cfg.enable {
host.ui.flatpak.enable = true;
2024-02-29 09:53:34 -05:00
2024-03-04 10:57:41 -05:00
services.flatpak = {
packages = [
"com.calibre_ebook.calibre"
"com.github.unrud.VideoDownloader"
"io.github.celluloid_player.Celluloid"
"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.5"
"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.5"
];
};
};
2024-02-29 09:53:34 -05:00
}