| 
									
										
										
										
											2015-09-27 21:01:43 +02:00
										 |  |  | { pkgs | 
					
						
							|  |  |  | , lib | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | , # The NixOS configuration to be installed onto the disk image. | 
					
						
							|  |  |  |   config | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | , # The size of the disk, in megabytes. | 
					
						
							|  |  |  |   diskSize | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-22 23:47:24 +00:00
										 |  |  |   # The files and directories to be placed in the target file system. | 
					
						
							|  |  |  |   # This is a list of attribute sets {source, target} where `source' | 
					
						
							|  |  |  |   # is the file system object (regular file or directory) to be | 
					
						
							|  |  |  |   # grafted in the file system at path `target'. | 
					
						
							|  |  |  | , contents ? [] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-07 02:00:21 +02:00
										 |  |  | , # Type of partition table to use; either "legacy", "efi", or "none". | 
					
						
							|  |  |  |   # For "efi" images, the GPT partition table is used and a mandatory ESP | 
					
						
							|  |  |  |   #   partition of reasonable size is created in addition to the root partition. | 
					
						
							|  |  |  |   #   If `installBootLoader` is true, GRUB will be installed in EFI mode. | 
					
						
							|  |  |  |   # For "legacy", the msdos partition table is used and a single large root | 
					
						
							|  |  |  |   #   partition is created. If `installBootLoader` is true, GRUB will be | 
					
						
							|  |  |  |   #   installed in legacy mode. | 
					
						
							|  |  |  |   # For "none", no partition table is created. Enabling `installBootLoader` | 
					
						
							|  |  |  |   #   most likely fails as GRUB will probably refuse to install. | 
					
						
							|  |  |  |   partitionTableType ? "legacy" | 
					
						
							| 
									
										
										
										
											2015-09-27 21:01:43 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | , # The root file system type. | 
					
						
							|  |  |  |   fsType ? "ext4" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-23 15:47:55 -08:00
										 |  |  | , # Filesystem label | 
					
						
							|  |  |  |   label ? "nixos" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-27 21:01:43 +02:00
										 |  |  | , # The initial NixOS configuration file to be copied to | 
					
						
							|  |  |  |   # /etc/nixos/configuration.nix. | 
					
						
							|  |  |  |   configFile ? null | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-28 14:31:19 +02:00
										 |  |  | , # Shell code executed after the VM has finished. | 
					
						
							|  |  |  |   postVM ? "" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-15 13:34:41 +01:00
										 |  |  | , name ? "nixos-disk-image" | 
					
						
							| 
									
										
										
										
											2016-03-30 21:48:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-12 18:29:01 +00:00
										 |  |  | , # Disk image format, one of qcow2, qcow2-compressed, vpc, raw. | 
					
						
							| 
									
										
										
										
											2017-11-11 19:26:50 +00:00
										 |  |  |   format ? "raw" | 
					
						
							| 
									
										
										
										
											2015-09-27 21:01:43 +02:00
										 |  |  | }: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-07 02:00:21 +02:00
										 |  |  | assert partitionTableType == "legacy" || partitionTableType == "efi" || partitionTableType == "none"; | 
					
						
							|  |  |  | # We use -E offset=X below, which is only supported by e2fsprogs | 
					
						
							|  |  |  | assert partitionTableType != "none" -> fsType == "ext4"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-27 21:01:43 +02:00
										 |  |  | with lib; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-12 18:29:01 +00:00
										 |  |  | let format' = format; in let | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-07 19:35:43 +01:00
										 |  |  |   format = if format' == "qcow2-compressed" then "qcow2" else format'; | 
					
						
							| 
									
										
										
										
											2017-11-12 18:29:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   compress = optionalString (format' == "qcow2-compressed") "-c"; | 
					
						
							| 
									
										
										
										
											2017-11-11 19:27:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-12 18:21:33 +00:00
										 |  |  |   filename = "nixos." + { | 
					
						
							| 
									
										
										
										
											2017-08-10 22:57:26 +00:00
										 |  |  |     qcow2 = "qcow2"; | 
					
						
							|  |  |  |     vpc   = "vhd"; | 
					
						
							|  |  |  |     raw   = "img"; | 
					
						
							| 
									
										
										
										
											2017-11-12 18:21:33 +00:00
										 |  |  |   }.${format}; | 
					
						
							| 
									
										
										
										
											2017-08-10 22:57:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-07 02:00:21 +02:00
										 |  |  |   rootPartition = { # switch-case | 
					
						
							|  |  |  |     legacy = "1"; | 
					
						
							|  |  |  |     efi = "2"; | 
					
						
							|  |  |  |   }.${partitionTableType}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   partitionDiskScript = { # switch-case | 
					
						
							|  |  |  |     legacy = ''
 | 
					
						
							|  |  |  |       parted --script $diskImage -- \ | 
					
						
							|  |  |  |         mklabel msdos \ | 
					
						
							|  |  |  |         mkpart primary ext4 1MiB -1 | 
					
						
							|  |  |  |     '';
 | 
					
						
							|  |  |  |     efi = ''
 | 
					
						
							|  |  |  |       parted --script $diskImage -- \ | 
					
						
							|  |  |  |         mklabel gpt \ | 
					
						
							|  |  |  |         mkpart ESP fat32 8MiB 256MiB \ | 
					
						
							|  |  |  |         set 1 boot on \ | 
					
						
							|  |  |  |         mkpart primary ext4 256MiB -1 | 
					
						
							|  |  |  |     '';
 | 
					
						
							|  |  |  |     none = ""; | 
					
						
							|  |  |  |   }.${partitionTableType}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-11 19:26:50 +00:00
										 |  |  |   nixpkgs = cleanSource pkgs.path; | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-07 19:35:43 +01:00
										 |  |  |   # FIXME: merge with channel.nix / make-channel.nix. | 
					
						
							| 
									
										
										
										
											2017-04-01 00:00:00 +00:00
										 |  |  |   channelSources = pkgs.runCommand "nixos-${config.system.nixos.version}" {} ''
 | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |     mkdir -p $out | 
					
						
							| 
									
										
										
										
											2018-12-20 16:17:05 -06:00
										 |  |  |     cp -prd ${nixpkgs.outPath} $out/nixos | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |     chmod -R u+w $out/nixos | 
					
						
							|  |  |  |     if [ ! -e $out/nixos/nixpkgs ]; then | 
					
						
							|  |  |  |       ln -s . $out/nixos/nixpkgs | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     rm -rf $out/nixos/.git | 
					
						
							| 
									
										
										
										
											2017-04-01 00:00:00 +00:00
										 |  |  |     echo -n ${config.system.nixos.versionSuffix} > $out/nixos/.version-suffix | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |   '';
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-07 19:35:43 +01:00
										 |  |  |   binPath = with pkgs; makeBinPath ( | 
					
						
							|  |  |  |     [ rsync | 
					
						
							|  |  |  |       utillinux | 
					
						
							|  |  |  |       parted | 
					
						
							|  |  |  |       e2fsprogs | 
					
						
							|  |  |  |       lkl | 
					
						
							|  |  |  |       config.system.build.nixos-install | 
					
						
							|  |  |  |       config.system.build.nixos-enter | 
					
						
							|  |  |  |       nix | 
					
						
							|  |  |  |     ] ++ stdenv.initialPath); | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   # I'm preserving the line below because I'm going to search for it across nixpkgs to consolidate | 
					
						
							|  |  |  |   # image building logic. The comment right below this now appears in 4 different places in nixpkgs :) | 
					
						
							|  |  |  |   # !!! should use XML. | 
					
						
							|  |  |  |   sources = map (x: x.source) contents; | 
					
						
							|  |  |  |   targets = map (x: x.target) contents; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-07 19:35:43 +01:00
										 |  |  |   closureInfo = pkgs.closureInfo { rootPaths = [ config.system.build.toplevel channelSources ]; }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |   prepareImage = ''
 | 
					
						
							| 
									
										
										
										
											2018-02-07 19:35:43 +01:00
										 |  |  |     export PATH=${binPath} | 
					
						
							| 
									
										
										
										
											2017-12-07 02:00:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Yes, mkfs.ext4 takes different units in different contexts. Fun. | 
					
						
							|  |  |  |     sectorsToKilobytes() { | 
					
						
							|  |  |  |       echo $(( ( "$1" * 512 ) / 1024 )) | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sectorsToBytes() { | 
					
						
							|  |  |  |       echo $(( "$1" * 512  )) | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     mkdir $out | 
					
						
							|  |  |  |     diskImage=nixos.raw | 
					
						
							|  |  |  |     truncate -s ${toString diskSize}M $diskImage | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-07 02:00:21 +02:00
										 |  |  |     ${partitionDiskScript} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ${if partitionTableType != "none" then ''
 | 
					
						
							|  |  |  |       # Get start & length of the root partition in sectors to $START and $SECTORS. | 
					
						
							|  |  |  |       eval $(partx $diskImage -o START,SECTORS --nr ${rootPartition} --pairs) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-23 15:47:55 -08:00
										 |  |  |       mkfs.${fsType} -F -L ${label} $diskImage -E offset=$(sectorsToBytes $START) $(sectorsToKilobytes $SECTORS)K | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |     '' else '' | 
					
						
							| 
									
										
										
										
											2019-01-23 15:47:55 -08:00
										 |  |  |       mkfs.${fsType} -F -L ${label} $diskImage | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |     ''}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     root="$PWD/root" | 
					
						
							|  |  |  |     mkdir -p $root | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Copy arbitrary other files into the image | 
					
						
							|  |  |  |     # Semi-shamelessly copied from make-etc.sh. I (@copumpkin) shall factor this stuff out as part of | 
					
						
							|  |  |  |     # https://github.com/NixOS/nixpkgs/issues/23052. | 
					
						
							|  |  |  |     set -f | 
					
						
							|  |  |  |     sources_=(${concatStringsSep " " sources}) | 
					
						
							|  |  |  |     targets_=(${concatStringsSep " " targets}) | 
					
						
							|  |  |  |     set +f | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for ((i = 0; i < ''${#targets_[@]}; i++)); do | 
					
						
							|  |  |  |       source="''${sources_[$i]}" | 
					
						
							|  |  |  |       target="''${targets_[$i]}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if [[ "$source" =~ '*' ]]; then | 
					
						
							|  |  |  |         # If the source name contains '*', perform globbing. | 
					
						
							|  |  |  |         mkdir -p $root/$target | 
					
						
							|  |  |  |         for fn in $source; do | 
					
						
							|  |  |  |           rsync -a --no-o --no-g "$fn" $root/$target/ | 
					
						
							|  |  |  |         done | 
					
						
							|  |  |  |       else | 
					
						
							|  |  |  |         mkdir -p $root/$(dirname $target) | 
					
						
							|  |  |  |         if ! [ -e $root/$target ]; then | 
					
						
							|  |  |  |           rsync -a --no-o --no-g $source $root/$target | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |           echo "duplicate entry $target -> $source" | 
					
						
							|  |  |  |           exit 1 | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |       fi | 
					
						
							|  |  |  |     done | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-07 19:35:43 +01:00
										 |  |  |     export HOME=$TMPDIR | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Provide a Nix database so that nixos-install can copy closures. | 
					
						
							|  |  |  |     export NIX_STATE_DIR=$TMPDIR/state | 
					
						
							|  |  |  |     nix-store --load-db < ${closureInfo}/registration | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-07 19:35:43 +01:00
										 |  |  |     echo "running nixos-install..." | 
					
						
							| 
									
										
										
										
											2018-02-27 19:58:23 +01:00
										 |  |  |     nixos-install --root $root --no-bootloader --no-root-passwd \ | 
					
						
							|  |  |  |       --system ${config.system.build.toplevel} --channel ${channelSources} --substituters "" | 
					
						
							| 
									
										
										
										
											2017-12-16 20:21:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |     echo "copying staging root to image..." | 
					
						
							| 
									
										
										
										
											2017-12-07 02:00:21 +02:00
										 |  |  |     cptofs -p ${optionalString (partitionTableType != "none") "-P ${rootPartition}"} -t ${fsType} -i $diskImage $root/* /
 | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |   '';
 | 
					
						
							|  |  |  | in pkgs.vmTools.runInLinuxVM ( | 
					
						
							| 
									
										
										
										
											2016-03-15 13:34:41 +01:00
										 |  |  |   pkgs.runCommand name | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |     { preVM = prepareImage; | 
					
						
							| 
									
										
										
										
											2017-12-07 02:00:21 +02:00
										 |  |  |       buildInputs = with pkgs; [ utillinux e2fsprogs dosfstools ]; | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |       postVM = ''
 | 
					
						
							|  |  |  |         ${if format == "raw" then ''
 | 
					
						
							| 
									
										
										
										
											2017-11-12 18:21:33 +00:00
										 |  |  |           mv $diskImage $out/${filename} | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |         '' else '' | 
					
						
							| 
									
										
										
										
											2017-11-11 19:27:37 +00:00
										 |  |  |           ${pkgs.qemu}/bin/qemu-img convert -f raw -O ${format} ${compress} $diskImage $out/${filename} | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |         ''}
 | 
					
						
							| 
									
										
										
										
											2017-11-12 18:21:33 +00:00
										 |  |  |         diskImage=$out/${filename} | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |         ${postVM} | 
					
						
							|  |  |  |       '';
 | 
					
						
							| 
									
										
										
										
											2015-10-06 15:03:26 +02:00
										 |  |  |       memSize = 1024; | 
					
						
							| 
									
										
										
										
											2015-09-27 21:01:43 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ''
 | 
					
						
							| 
									
										
										
										
											2018-02-07 19:35:43 +01:00
										 |  |  |       export PATH=${binPath}:$PATH | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-07 02:00:21 +02:00
										 |  |  |       rootDisk=${if partitionTableType != "none" then "/dev/vda${rootPartition}" else "/dev/vda"} | 
					
						
							| 
									
										
										
										
											2015-09-27 21:01:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |       # Some tools assume these exist | 
					
						
							| 
									
										
										
										
											2016-08-16 04:02:20 +01:00
										 |  |  |       ln -s vda /dev/xvda | 
					
						
							|  |  |  |       ln -s vda /dev/sda | 
					
						
							| 
									
										
										
										
											2015-09-27 21:01:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |       mountPoint=/mnt | 
					
						
							|  |  |  |       mkdir $mountPoint | 
					
						
							|  |  |  |       mount $rootDisk $mountPoint | 
					
						
							| 
									
										
										
										
											2015-09-27 21:01:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-07 02:00:21 +02:00
										 |  |  |       # Create the ESP and mount it. Unlike e2fsprogs, mkfs.vfat doesn't support an | 
					
						
							|  |  |  |       # '-E offset=X' option, so we can't do this outside the VM. | 
					
						
							|  |  |  |       ${optionalString (partitionTableType == "efi") ''
 | 
					
						
							|  |  |  |         mkdir -p /mnt/boot | 
					
						
							|  |  |  |         mkfs.vfat -n ESP /dev/vda1 | 
					
						
							|  |  |  |         mount /dev/vda1 /mnt/boot | 
					
						
							|  |  |  |       ''}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |       # Install a configuration.nix | 
					
						
							| 
									
										
										
										
											2015-09-27 21:01:43 +02:00
										 |  |  |       mkdir -p /mnt/etc/nixos | 
					
						
							|  |  |  |       ${optionalString (configFile != null) ''
 | 
					
						
							|  |  |  |         cp ${configFile} /mnt/etc/nixos/configuration.nix | 
					
						
							|  |  |  |       ''}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |       # Set up core system link, GRUB, etc. | 
					
						
							| 
									
										
										
										
											2018-02-07 19:35:43 +01:00
										 |  |  |       NIXOS_INSTALL_BOOTLOADER=1 nixos-enter --root $mountPoint -- /nix/var/nix/profiles/system/bin/switch-to-configuration boot | 
					
						
							| 
									
										
										
										
											2017-02-22 23:47:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |       # The above scripts will generate a random machine-id and we don't want to bake a single ID into all our images | 
					
						
							|  |  |  |       rm -f $mountPoint/etc/machine-id | 
					
						
							| 
									
										
										
										
											2017-02-22 23:47:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 03:08:37 +00:00
										 |  |  |       umount -R /mnt | 
					
						
							| 
									
										
										
										
											2015-09-27 21:01:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-26 02:02:22 +00:00
										 |  |  |       # Make sure resize2fs works. Note that resize2fs has stricter criteria for resizing than a normal | 
					
						
							|  |  |  |       # mount, so the `-c 0` and `-i 0` don't affect it. Setting it to `now` doesn't produce deterministic | 
					
						
							|  |  |  |       # output, of course, but we can fix that when/if we start making images deterministic. | 
					
						
							| 
									
										
										
										
											2016-12-06 16:34:18 +01:00
										 |  |  |       ${optionalString (fsType == "ext4") ''
 | 
					
						
							| 
									
										
										
										
											2017-02-26 02:02:22 +00:00
										 |  |  |         tune2fs -T now -c 0 -i 0 $rootDisk | 
					
						
							| 
									
										
										
										
											2016-12-06 16:34:18 +01:00
										 |  |  |       ''}
 | 
					
						
							| 
									
										
										
										
											2015-09-27 21:01:43 +02:00
										 |  |  |     ''
 | 
					
						
							|  |  |  | ) |