feat: basic setup with all packages
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import decman
|
||||
from decman.plugins import aur
|
||||
|
||||
|
||||
class BasePackages(decman.Module):
|
||||
def __init__(self):
|
||||
"""Base packages that should never be uninstalled"""
|
||||
super().__init__("steering-wheel")
|
||||
|
||||
@aur.packages
|
||||
def aurpkgs(self) -> set[str]:
|
||||
return {"oversteer", "hid-tmff2-dkms-git"}
|
||||
|
||||
def on_enable(self, store: decman.Store):
|
||||
return super().on_enable(store)
|
||||
Reference in New Issue
Block a user