feat: basic setup with all packages
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
import decman
|
||||
from decman.plugins import pacman
|
||||
|
||||
|
||||
class DevTools(decman.Module):
|
||||
def __init__(self):
|
||||
"""Base packages that should never be uninstalled"""
|
||||
super().__init__("dev-tools")
|
||||
|
||||
@pacman.packages
|
||||
def pkgs(self) -> set[str]:
|
||||
return {
|
||||
"act",
|
||||
"cronie",
|
||||
"cloc",
|
||||
"docker",
|
||||
"docker-buildx",
|
||||
"docker-compose",
|
||||
"filezilla",
|
||||
"kitty",
|
||||
"lazygit",
|
||||
"git-lfs",
|
||||
"hugo",
|
||||
"meld",
|
||||
"minisign",
|
||||
"serpl",
|
||||
"terminator",
|
||||
}
|
||||
Reference in New Issue
Block a user