Updated the README with the announcement that flatpaks can now be managed. Added the required documentation to the example.

This commit is contained in:
Dávid Groniewsky
2025-09-30 22:40:19 +02:00
parent 9ce42ccf3e
commit dbeed0b7d8
3 changed files with 16 additions and 0 deletions
+4
View File
@@ -1,5 +1,6 @@
# from import is ok for importing classes and functions
# just remember to not import variables this way
from typing import override
from decman import Module, File, Directory, UserPackage, sh, prg
@@ -112,6 +113,9 @@ class MyModule(Module):
def aur_packages(self) -> list[str]:
return ["protonvpn"]
def flatpak_packages(self) -> list[str]:
return ["org.mozilla.firefox"]
def systemd_units(self) -> list[str]:
return ["reflector.timer"]