| 
									
										
										
										
											2014-04-14 16:26:48 +02:00
										 |  |  | { config, lib, pkgs, ... }: | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-14 16:26:48 +02:00
										 |  |  | with lib; | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-09-04 13:05:09 +02:00
										 |  |  |   imports = [ ../profiles/qemu-guest.nix ../profiles/headless.nix ./ec2-data.nix ]; | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   system.build.novaImage = | 
					
						
							|  |  |  |     pkgs.vmTools.runInLinuxVM ( | 
					
						
							|  |  |  |       pkgs.runCommand "nova-image" | 
					
						
							|  |  |  |         { preVM = | 
					
						
							|  |  |  |             ''
 | 
					
						
							|  |  |  |               mkdir $out | 
					
						
							|  |  |  |               diskImage=$out/image | 
					
						
							| 
									
										
										
										
											2013-07-31 14:53:27 +02:00
										 |  |  |               ${pkgs.vmTools.qemu}/bin/qemu-img create -f raw $diskImage "4G" | 
					
						
							| 
									
										
										
										
											2011-10-21 23:39:05 +00:00
										 |  |  |               mv closure xchg/ | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  |             '';
 | 
					
						
							|  |  |  |           buildInputs = [ pkgs.utillinux pkgs.perl ]; | 
					
						
							| 
									
										
										
										
											2011-09-14 18:20:50 +00:00
										 |  |  |           exportReferencesGraph = | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  |             [ "closure" config.system.build.toplevel ]; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         ''
 | 
					
						
							|  |  |  |           # Create a single / partition. | 
					
						
							|  |  |  |           ${pkgs.parted}/sbin/parted /dev/vda mklabel msdos | 
					
						
							|  |  |  |           ${pkgs.parted}/sbin/parted /dev/vda -- mkpart primary ext2 1M -1s | 
					
						
							|  |  |  |           . /sys/class/block/vda1/uevent | 
					
						
							|  |  |  |           mknod /dev/vda1 b $MAJOR $MINOR | 
					
						
							| 
									
										
										
										
											2011-09-14 18:20:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  |           # Create an empty filesystem and mount it. | 
					
						
							|  |  |  |           ${pkgs.e2fsprogs}/sbin/mkfs.ext3 -L nixos /dev/vda1 | 
					
						
							|  |  |  |           ${pkgs.e2fsprogs}/sbin/tune2fs -c 0 -i 0 /dev/vda1 | 
					
						
							|  |  |  |           mkdir /mnt | 
					
						
							|  |  |  |           mount /dev/vda1 /mnt | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           # The initrd expects these directories to exist. | 
					
						
							|  |  |  |           mkdir /mnt/dev /mnt/proc /mnt/sys | 
					
						
							|  |  |  |           mount --bind /proc /mnt/proc | 
					
						
							|  |  |  |           mount --bind /dev /mnt/dev | 
					
						
							|  |  |  |           mount --bind /sys /mnt/sys | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           # Copy all paths in the closure to the filesystem. | 
					
						
							| 
									
										
										
										
											2011-10-21 23:39:05 +00:00
										 |  |  |           storePaths=$(perl ${pkgs.pathsFromGraph} /tmp/xchg/closure) | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-30 15:19:58 +00:00
										 |  |  |           mkdir -p /mnt/nix/store | 
					
						
							|  |  |  |           ${pkgs.rsync}/bin/rsync -av $storePaths /mnt/nix/store/ | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |           # Register the paths in the Nix database. | 
					
						
							| 
									
										
										
										
											2011-10-21 23:39:05 +00:00
										 |  |  |           printRegistration=1 perl ${pkgs.pathsFromGraph} /tmp/xchg/closure | \ | 
					
						
							| 
									
										
										
										
											2013-10-28 16:28:04 +01:00
										 |  |  |               chroot /mnt ${config.nix.package}/bin/nix-store --load-db | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |           # Create the system profile to allow nixos-rebuild to work. | 
					
						
							| 
									
										
										
										
											2013-10-28 16:28:04 +01:00
										 |  |  |           chroot /mnt ${config.nix.package}/bin/nix-env \ | 
					
						
							| 
									
										
										
										
											2011-10-30 15:19:58 +00:00
										 |  |  |               -p /nix/var/nix/profiles/system --set ${config.system.build.toplevel} | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |           # `nixos-rebuild' requires an /etc/NIXOS. | 
					
						
							|  |  |  |           mkdir -p /mnt/etc | 
					
						
							|  |  |  |           touch /mnt/etc/NIXOS | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           # Install a configuration.nix. | 
					
						
							|  |  |  |           mkdir -p /mnt/etc/nixos | 
					
						
							| 
									
										
										
										
											2011-05-11 13:52:49 +00:00
										 |  |  |           cp ${./nova-config.nix} /mnt/etc/nixos/configuration.nix | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |           # Generate the GRUB menu. | 
					
						
							|  |  |  |           chroot /mnt ${config.system.build.toplevel}/bin/switch-to-configuration boot | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           umount /mnt/proc /mnt/dev /mnt/sys | 
					
						
							|  |  |  |           umount /mnt | 
					
						
							|  |  |  |         ''
 | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-02 18:02:12 +01:00
										 |  |  |   fileSystems."/".device = "/dev/disk/by-label/nixos"; | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   boot.kernelParams = [ "console=ttyS0" ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   boot.loader.grub.version = 2; | 
					
						
							|  |  |  |   boot.loader.grub.device = "/dev/vda"; | 
					
						
							|  |  |  |   boot.loader.grub.timeout = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-14 18:20:50 +00:00
										 |  |  |   # Put /tmp and /var on /ephemeral0, which has a lot more space. | 
					
						
							|  |  |  |   # Unfortunately we can't do this with the `fileSystems' option | 
					
						
							|  |  |  |   # because it has no support for creating the source of a bind | 
					
						
							| 
									
										
										
										
											2012-12-16 13:31:44 -05:00
										 |  |  |   # mount.  Also, "move" /nix to /ephemeral0 by layering a unionfs-fuse | 
					
						
							|  |  |  |   # mount on top of it so we have a lot more space for Nix operations. | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  |   /*
 | 
					
						
							|  |  |  |   boot.initrd.postMountCommands = | 
					
						
							|  |  |  |     ''
 | 
					
						
							|  |  |  |       mkdir -m 1777 -p $targetRoot/ephemeral0/tmp | 
					
						
							|  |  |  |       mkdir -m 1777 -p $targetRoot/tmp | 
					
						
							|  |  |  |       mount --bind $targetRoot/ephemeral0/tmp $targetRoot/tmp | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       mkdir -m 755 -p $targetRoot/ephemeral0/var | 
					
						
							|  |  |  |       mkdir -m 755 -p $targetRoot/var | 
					
						
							|  |  |  |       mount --bind $targetRoot/ephemeral0/var $targetRoot/var | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-16 13:31:44 -05:00
										 |  |  |       mkdir -p /unionfs-chroot/ro-nix | 
					
						
							|  |  |  |       mount --rbind $targetRoot/nix /unionfs-chroot/ro-nix | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       mkdir -p /unionfs-chroot/rw-nix | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  |       mkdir -m 755 -p $targetRoot/ephemeral0/nix | 
					
						
							| 
									
										
										
										
											2012-12-16 13:31:44 -05:00
										 |  |  |       mount --rbind $targetRoot/ephemeral0/nix /unionfs-chroot/rw-nix | 
					
						
							| 
									
										
										
										
											2013-01-22 13:31:08 +01:00
										 |  |  |       unionfs -o allow_other,cow,nonempty,chroot=/unionfs-chroot,max_files=32768 /rw-nix=RW:/ro-nix=RO $targetRoot/nix | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  |     '';
 | 
					
						
							| 
									
										
										
										
											2012-12-16 13:31:44 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     boot.initrd.supportedFilesystems = [ "unionfs-fuse" ]; | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  |     */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-16 14:15:37 +00:00
										 |  |  |   # Since Nova allows VNC access to instances, it's nice to start to | 
					
						
							|  |  |  |   # start a few virtual consoles. | 
					
						
							|  |  |  |   services.mingetty.ttys = [ "tty1" "tty2" ]; | 
					
						
							| 
									
										
										
										
											2011-04-06 15:09:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   # Allow root logins only using the SSH key that the user specified | 
					
						
							|  |  |  |   # at instance creation time. | 
					
						
							|  |  |  |   services.openssh.enable = true; | 
					
						
							|  |  |  |   services.openssh.permitRootLogin = "without-password"; | 
					
						
							|  |  |  | } |