This is a Packer definition for NixOS. It builds a Vagrant box for NixOS 14.12 x86_64.
(to be updated by cstrahan)
Pre-built boxes are hosted on
VagrantCloud. To use a pre-built
box, you just need to set the config.vm.box
setting in your
Vagrantfile to "cstrahan/nixos-14.04-x86_64"
. Here's a complete
example:
Vagrant.configure("2") do |config|
config.vm.box = "cstrahan/nixos-14.04-x86_64"
config.vm.box_version = "~> 0.1.0"
config.ssh.forward_agent = true
config.vm.provider "virtualbox" do |v|
v.memory = 4000
v.gui = false
end
end
If you want to customize the box, there are a couple variables you can pass to Packer:
swap_size
- The size of the swap partition in megabytes. If this is empty (the default), no swap partition is created.disk_size
- The total size of the hard disk in megabytes (defaults to 2000).graphical
- Set this to true to get a graphical desktop
There are also a couple variables that only affect the build:
memmory_size
- The amount of RAM in megabytes (defaults to 1024).cpus
- The number of CPUs (defaults to 1).
Example:
$ sh ./build-stable.sh \
-var 'cpus=2' \
-var 'swap_size=2000'