add debian support
This commit is contained in:
parent
39b5ef0b93
commit
aff59e42bd
3 changed files with 19 additions and 0 deletions
5
crates/00-system/crate.debian.sh
Normal file
5
crates/00-system/crate.debian.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
super_apply() {
|
||||
apt update -y
|
||||
apt install -y netselect-apt sudo
|
||||
netselect-apt
|
||||
}
|
7
crates/10-zsh/crate.debian.sh
Normal file
7
crates/10-zsh/crate.debian.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
super_apply() {
|
||||
apt install -y zsh
|
||||
}
|
||||
|
||||
super_undo() {
|
||||
pacman -R --noconfirm zsh
|
||||
}
|
7
crates/20-vim/crate.debian.sh
Normal file
7
crates/20-vim/crate.debian.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
super_apply() {
|
||||
apt install -y vim
|
||||
}
|
||||
|
||||
super_undo() {
|
||||
echo "we never uninstall vim -_-"
|
||||
}
|
Loading…
Reference in a new issue