28 lines
654 B
TOML
28 lines
654 B
TOML
# Crate Manifest for Dotfile Processor
|
|
|
|
[crate]
|
|
name = "dotfile-processor"
|
|
description = "A versatile crate for managing dotfiles and system configurations."
|
|
author = "Strix"
|
|
|
|
# List of packages to be installed
|
|
[[packages]]
|
|
name = "git"
|
|
description = "Version control system"
|
|
|
|
[[packages]]
|
|
name = "nvim"
|
|
description = "Text editor for creating and editing files"
|
|
distro_name_mapping = { pacman = "neovim" }
|
|
|
|
[[packages]]
|
|
name = "zsh"
|
|
description = "Shell designed for interactive use"
|
|
|
|
[[actions.command]]
|
|
user = "root"
|
|
command = "sh ./scripts/pam_wheel.sh"
|
|
description = "Pam wheel setup"
|
|
|
|
[metadata]
|
|
repository = "https://git.saluco.nl/strix/dotfiles"
|