16 lines
		
	
	
	
		
			270 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			270 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {...}: {
 | |
|   host = {
 | |
|     users = {
 | |
|       leyla = {
 | |
|         isDesktopUser = true;
 | |
|         isTerminalUser = true;
 | |
|         isPrincipleUser = true;
 | |
|       };
 | |
|       eve.isNormalUser = false;
 | |
|     };
 | |
|   };
 | |
| 
 | |
|   system.stateVersion = 5;
 | |
| 
 | |
|   nixpkgs.hostPlatform = "aarch64-darwin";
 | |
| }
 |