all repos — nixfiles @ 5e2fa4e77e3f6af0707336b3f0b7e72f7d2c9335

System and user configuration, managed by nix and home-manager

tag-vagrant/vagrant.d/Vagrantfile (view raw)

1
2
3
4
5
6
7
# -*- mode: ruby -*-
Vagrant.configure(2) do |config|
  config.vm.provision "ansible" do |ansible|
    ansible.playbook = "#{File.dirname(__FILE__)}/ansible/site.yml"
    ansible.limit = "all"
  end
end