19 documentation.man.enable = false;
20 documentation.nixos.enable = false;
22 users.extraUsers.vagrant.extraGroups = [ "vboxsf" ];
24 # generate the box v1 format which is much easier to generate
25 # https://www.vagrantup.com/docs/boxes/format.html
26 system.build.vagrantVirtualbox = pkgs.runCommand
27 "virtualbox-vagrant.box"
33 # 1. create that metadata.json file
34 echo '{"provider":"virtualbox"}' > metadata.json
36 # 2. create a default Vagrantfile config
37 cat <<VAGRANTFILE > Vagrantfile
38 Vagrant.configure("2") do |config|
39 config.vm.base_mac = "0800275F0936"
43 # 3. add the exported VM files
44 tar xvf ${config.system.build.virtualBoxOVA}/*.ova
46 # 4. move the ovf to the fixed location
49 # 5. generate OVF manifest file
53 checksum=$(sha256sum $fname | cut -d' ' -f 1)
54 echo "SHA256($fname)= $checksum" >> box.mf
57 # 6. compress everything back together
58 tar --owner=0 --group=0 --sort=name --numeric-owner -czf $out .