Fixed the management of flatpak packages installed to the user installation as requested in the PR

This commit is contained in:
David Groniewsky
2025-10-09 22:42:19 +02:00
parent d765eea3f4
commit 7ea1ef2d81
5 changed files with 99 additions and 51 deletions
+2 -2
View File
@@ -116,8 +116,8 @@ class MyModule(Module):
def flatpak_packages(self) -> list[str]:
return ["org.mozilla.firefox"]
def flatpak_user_packages(self) -> list[str]:
return ["io.github.kolunmi.Bazaar"]
def flatpak_user_packages(self) -> list[tuple[str,str]]:
return [("username", "io.github.kolunmi.Bazaar")]
def systemd_units(self) -> list[str]:
return ["reflector.timer"]