| 
									
										
										
										
											2019-11-05 00:39:07 +01:00
										 |  |  | import ./make-test-python.nix ({ lib, ... } : { | 
					
						
							| 
									
										
										
										
											2019-08-07 18:04:18 +02:00
										 |  |  |   name = "nixos-generate-config"; | 
					
						
							|  |  |  |   meta.maintainers = with lib.maintainers; [ basvandijk ]; | 
					
						
							|  |  |  |   machine = { | 
					
						
							|  |  |  |     system.nixos-generate-config.configuration = ''
 | 
					
						
							|  |  |  |       # OVERRIDDEN | 
					
						
							|  |  |  |       { config, pkgs, ... }: { | 
					
						
							|  |  |  |         imports = [ ./hardware-configuration.nix ]; | 
					
						
							|  |  |  |       $bootLoaderConfig | 
					
						
							| 
									
										
										
										
											2020-10-10 22:44:36 -04:00
										 |  |  |       $desktopConfiguration | 
					
						
							| 
									
										
										
										
											2019-08-07 18:04:18 +02:00
										 |  |  |       } | 
					
						
							|  |  |  |     '';
 | 
					
						
							| 
									
										
										
										
											2020-10-10 22:44:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-13 18:45:27 -05:00
										 |  |  |     system.nixos-generate-config.desktopConfiguration = [''
 | 
					
						
							| 
									
										
										
										
											2020-10-10 22:44:36 -04:00
										 |  |  |       # DESKTOP | 
					
						
							| 
									
										
										
										
											2021-02-13 17:42:34 -05:00
										 |  |  |       services.xserver.displayManager.gdm.enable = true; | 
					
						
							|  |  |  |       services.xserver.desktopManager.gnome3.enable = true; | 
					
						
							| 
									
										
										
										
											2021-02-13 18:45:27 -05:00
										 |  |  |     ''];
 | 
					
						
							| 
									
										
										
										
											2019-08-07 18:04:18 +02:00
										 |  |  |   }; | 
					
						
							|  |  |  |   testScript = ''
 | 
					
						
							| 
									
										
										
										
											2019-11-05 00:39:07 +01:00
										 |  |  |     start_all() | 
					
						
							|  |  |  |     machine.wait_for_unit("multi-user.target") | 
					
						
							|  |  |  |     machine.succeed("nixos-generate-config") | 
					
						
							| 
									
										
										
										
											2019-08-07 18:04:18 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test if the configuration really is overridden | 
					
						
							| 
									
										
										
										
											2019-11-05 00:39:07 +01:00
										 |  |  |     machine.succeed("grep 'OVERRIDDEN' /etc/nixos/configuration.nix") | 
					
						
							| 
									
										
										
										
											2019-08-07 18:04:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-10 22:44:36 -04:00
										 |  |  |     # Test if desktop configuration really is overridden | 
					
						
							|  |  |  |     machine.succeed("grep 'DESKTOP' /etc/nixos/configuration.nix") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-07 18:04:18 +02:00
										 |  |  |     # Test of if the Perl variable $bootLoaderConfig is spliced correctly: | 
					
						
							| 
									
										
										
										
											2019-11-05 00:39:07 +01:00
										 |  |  |     machine.succeed( | 
					
						
							|  |  |  |         "grep 'boot\\.loader\\.grub\\.enable = true;' /etc/nixos/configuration.nix" | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2020-10-10 22:44:36 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Test if the Perl variable $desktopConfiguration is spliced correctly | 
					
						
							|  |  |  |     machine.succeed( | 
					
						
							|  |  |  |         "grep 'services\\.xserver\\.desktopManager\\.gnome3\\.enable = true;' /etc/nixos/configuration.nix" | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2019-08-07 18:04:18 +02:00
										 |  |  |   '';
 | 
					
						
							|  |  |  | }) |