 96190535e5
			
		
	
	
		96190535e5
		
	
	
	
	
		
			
			This reverts commit 095fe5b43def40279a243e663c662b02caac5318. Pointless renames considered harmful. All they do is force people to spend extra work updating their configs for no benefit, and hindering the ability to switch between unstable and stable versions of NixOS. Like, what was the value of having the "nixos." there? I mean, by definition anything in a NixOS module has something to do with NixOS...
		
			
				
	
	
		
			15 lines
		
	
	
		
			289 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			289 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, lib, ... }:
 | |
| {
 | |
|   options = {
 | |
|     ec2 = {
 | |
|       hvm = lib.mkOption {
 | |
|         default = lib.versionAtLeast config.system.stateVersion "17.03";
 | |
|         internal = true;
 | |
|         description = ''
 | |
|           Whether the EC2 instance is a HVM instance.
 | |
|         '';
 | |
|       };
 | |
|     };
 | |
|   };
 | |
| }
 |