Add flatpak

This commit is contained in:
muon 2026-01-17 11:01:49 +00:00
parent ce74d1b0eb
commit 5770fcf23d
6 changed files with 69 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{
config,
lib,
...
}: let
cfg = config.mods.flatpak.stremio;
in
with lib; {
options.mods.flatpak.stremio.enable =
mkEnableOption "enables stremio flatpak";
config = mkIf cfg.enable {
services.flatpak.packages = [
{
appId = "com.stremio.Stremio";
origin = "flathub";
}
];
};
}