24 lines
		
	
	
		
			621 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
		
			621 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| 
								 | 
							
								# nix-build '<nixpkgs/nixos>' -A config.system.build.cloudstackImage --arg configuration "{ imports = [ ./nixos/maintainers/scripts/cloudstack/cloudstack-image.nix ]; }"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								{ config, lib, pkgs, ... }:
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								with lib;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								  imports =
							 | 
						||
| 
								 | 
							
								    [ ../../../modules/virtualisation/cloudstack-config.nix ];
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  system.build.cloudstackImage = import ../../../lib/make-disk-image.nix {
							 | 
						||
| 
								 | 
							
								    inherit lib config pkgs;
							 | 
						||
| 
								 | 
							
								    diskSize = 8192;
							 | 
						||
| 
								 | 
							
								    format = "qcow2";
							 | 
						||
| 
								 | 
							
								    configFile = pkgs.writeText "configuration.nix"
							 | 
						||
| 
								 | 
							
								      ''
							 | 
						||
| 
								 | 
							
								        {
							 | 
						||
| 
								 | 
							
								          imports = [ <nixpkgs/nixos/modules/virtualisation/cloudstack-config.nix> ];
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								      '';
							 | 
						||
| 
								 | 
							
								  };
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								}
							 |