19 lines
		
	
	
	
		
			383 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			383 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, ... }:
 | |
| 
 | |
| {
 | |
|   security.acme = {
 | |
|     acceptTerms = true;
 | |
| 
 | |
|     certs = {
 | |
|       "oliverdavies.uk" = {
 | |
|         domain = "oliverdavies.uk";
 | |
|         dnsProvider = "cloudflare";
 | |
|         email = "oliver@oliverdavies.uk";
 | |
|         environmentFile = config.age.secrets.cloudflare.path;
 | |
|         webroot = null;
 | |
| 
 | |
|         extraDomainNames = [ "*.oliverdavies.uk" ];
 | |
|       };
 | |
|     };
 | |
|   };
 | |
| }
 |