1
0
mirror of https://github.com/eoli3n/dotfiles synced 2024-11-23 07:21:58 +01:00
eoli3n-dotfiles/vagrant/archlinux/Vagrantfile
2017-12-16 22:45:14 +01:00

15 lines
360 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "terrywang/archlinux"
config.vm.provision "shell", inline: <<-SHELL
pacman -Syu --no-confirm
pacman -S git --no-confirm
git clone --recursive https://github.com/eoli3n/dotfiles
cd dotfiles
git checkout dev
./install.sh desktop
SHELL
end