There are currently two ways to build Openstack image. This just picks best of both, to keep only one! - Image is resizable - Cloudinit is enable - Password authentication is disable by default - Use the same layer than other image builders (ec2, gce...)
		
			
				
	
	
		
			27 lines
		
	
	
		
			744 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			744 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
# nix-build '<nixpkgs/nixos>' -A config.system.build.novaImage --arg configuration "{ imports = [ ./nixos/maintainers/scripts/openstack/nova-image.nix ]; }"
 | 
						|
 | 
						|
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
with lib;
 | 
						|
 | 
						|
{
 | 
						|
  imports =
 | 
						|
    [ ../../../modules/installer/cd-dvd/channel.nix
 | 
						|
      ../../../modules/virtualisation/nova-config.nix
 | 
						|
    ];
 | 
						|
 | 
						|
  system.build.novaImage = import ../../../lib/make-disk-image.nix {
 | 
						|
    inherit lib config;
 | 
						|
    pkgs = import ../../../.. { inherit (pkgs) system; }; # ensure we use the regular qemu-kvm package
 | 
						|
    diskSize = 8192;
 | 
						|
    format = "qcow2";
 | 
						|
    configFile = pkgs.writeText "configuration.nix"
 | 
						|
      ''
 | 
						|
        {
 | 
						|
          imports = [ <nixpkgs/nixos/modules/virtualisation/nova-config.nix> ];
 | 
						|
        }
 | 
						|
      '';
 | 
						|
  };
 | 
						|
 | 
						|
}
 |