better remote flatpak bundle definition

This commit is contained in:
William 2025-06-09 16:22:57 -03:00
parent b2f90956d2
commit c3cfd43684

View file

@ -167,42 +167,38 @@
]; ];
}; };
services.flatpak = services.flatpak = {
let enable = true;
orcahash = "0hdx5sg6fknj1pfnfxvlfwb5h6y1vjr6fyajbsnjph5gkp97c6p1"; packages = [
in ### Dev Tools ###
{ ### Internet Browsers & Communication ###
enable = true; "app.zen_browser.zen"
packages = [ ### Office & Productivity ###
### Dev Tools ### ### Graphics & Design ###
### Internet Browsers & Communication ### "com.boxy_svg.BoxySVG"
"app.zen_browser.zen" rec {
### Office & Productivity ### sha256 = "0hdx5sg6fknj1pfnfxvlfwb5h6y1vjr6fyajbsnjph5gkp97c6p1";
### Graphics & Design ### bundle = "${pkgs.fetchurl {
"com.boxy_svg.BoxySVG" url = "https://github.com/SoftFever/OrcaSlicer/releases/download/v2.3.0/OrcaSlicer-Linux-flatpak_V2.3.0_x86_64.flatpak";
{ sha256 = sha256; # References the sha256 attribute above
bundle = "${pkgs.fetchurl { }}";
url = "https://github.com/SoftFever/OrcaSlicer/releases/download/v2.3.0/OrcaSlicer-Linux-flatpak_V2.3.0_x86_64.flatpak"; appId = "io.github.softfever.OrcaSlicer";
sha256 = orcahash; }
}}"; ### Gaming & Entertainment ###
appId = "io.github.softfever.OrcaSlicer"; "com.github.k4zmu2a.spacecadetpinball"
sha256 = orcahash; "io.itch.itch"
} "io.mrarm.mcpelauncher"
### Gaming & Entertainment ### "org.freedesktop.Platform.VulkanLayer.MangoHud/x86_64/24.08"
"com.github.k4zmu2a.spacecadetpinball" ### System Utilities ###
"io.itch.itch" "com.github.tchx84.Flatseal"
"io.mrarm.mcpelauncher" "com.rustdesk.RustDesk"
"org.freedesktop.Platform.VulkanLayer.MangoHud/x86_64/24.08" "com.steamgriddb.SGDBoop"
### System Utilities ### "io.github.Foldex.AdwSteamGtk"
"com.github.tchx84.Flatseal" ### Media ###
"com.rustdesk.RustDesk" ];
"com.steamgriddb.SGDBoop" uninstallUnmanaged = true;
"io.github.Foldex.AdwSteamGtk" update.auto.enable = true;
### Media ### };
];
uninstallUnmanaged = true;
update.auto.enable = true;
};
} }
)) ))
]; ];