grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / virtualisation / vagrant-virtualbox-image.nix
blob556228436b99284f268ef5833c566366422e854e
1 # Vagrant + VirtualBox
3 { config, pkgs, ... }:
6   imports = [
7     ./vagrant-guest.nix
8     ./virtualbox-image.nix
9   ];
11   virtualbox.params = {
12     audio = "none";
13     audioin = "off";
14     audioout = "off";
15     usb = "off";
16     usbehci = "off";
17   };
18   documentation.man.enable = false;
19   documentation.nixos.enable = false;
21   users.extraUsers.vagrant.extraGroups = [ "vboxsf" ];
23   # generate the box v1 format which is much easier to generate
24   # https://www.vagrantup.com/docs/boxes/format.html
25   system.build.vagrantVirtualbox = pkgs.runCommand
26     "virtualbox-vagrant.box"
27     {}
28     ''
29       mkdir workdir
30       cd workdir
32       # 1. create that metadata.json file
33       echo '{"provider":"virtualbox"}' > metadata.json
35       # 2. create a default Vagrantfile config
36       cat <<VAGRANTFILE > Vagrantfile
37       Vagrant.configure("2") do |config|
38         config.vm.base_mac = "0800275F0936"
39       end
40       VAGRANTFILE
42       # 3. add the exported VM files
43       tar xvf ${config.system.build.virtualBoxOVA}/*.ova
45       # 4. move the ovf to the fixed location
46       mv *.ovf box.ovf
48       # 5. generate OVF manifest file
49       rm *.mf
50       touch box.mf
51       for fname in *; do
52         checksum=$(sha256sum $fname | cut -d' ' -f 1)
53         echo "SHA256($fname)= $checksum" >> box.mf
54       done
56       # 6. compress everything back together
57       tar --owner=0 --group=0 --sort=name --numeric-owner -czf $out .
58     '';