forked from fediversity/fediversity
		
	closes #93. note that this includes classes: - `nixos` - `nixosTest` - `nixops4Resource` - `nixops4Deployment` .. and my (made-up, as per the [docs](https://ryantm.github.io/nixpkgs/module-system/module-system/#module-system-lib-evalModules-param-class)): - `nix-unit` - `package` .. while i did not manage to cover: - service tests, given `pkgs.nixosTest` seemed to not actually like `_class = "nixosTest"` (?!) ... nor #93's mentioned destructured arguments for that matter, as per Fediversity/Fediversity#93 (comment) - let me know if that is still desired as well. Reviewed-on: Fediversity/Fediversity#398 Reviewed-by: Valentin Gagarin <valentin.gagarin@tweag.io> Co-authored-by: Kiara Grouwstra <kiara@procolix.eu> Co-committed-by: Kiara Grouwstra <kiara@procolix.eu>
		
			
				
	
	
		
			125 lines
		
	
	
	
		
			3.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			125 lines
		
	
	
	
		
			3.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, lib, ... }:
 | |
| 
 | |
| let
 | |
|   inherit (lib) types mkOption mkEnableOption;
 | |
| in
 | |
| 
 | |
| {
 | |
|   _class = "nixos";
 | |
| 
 | |
|   options.fediversity.garage = {
 | |
|     enable = mkEnableOption "Enable a Garage server on the machine";
 | |
| 
 | |
|     ensureBuckets = mkOption {
 | |
|       type = types.attrsOf (
 | |
|         types.submodule {
 | |
|           options = {
 | |
|             website = mkOption {
 | |
|               type = types.bool;
 | |
|               default = false;
 | |
|             };
 | |
|             # I think setting corsRules should allow another website to show images from your bucket
 | |
|             corsRules = {
 | |
|               enable = mkEnableOption "CORS Rules";
 | |
|               allowedHeaders = mkOption {
 | |
|                 type = types.listOf types.str;
 | |
|                 default = [ ];
 | |
|               };
 | |
|               allowedMethods = mkOption {
 | |
|                 type = types.listOf types.str;
 | |
|                 default = [ ];
 | |
|               };
 | |
|               allowedOrigins = mkOption {
 | |
|                 type = types.listOf types.str;
 | |
|                 default = [ ];
 | |
|               };
 | |
|             };
 | |
|             aliases = mkOption {
 | |
|               type = types.listOf types.str;
 | |
|               default = [ ];
 | |
|             };
 | |
|           };
 | |
|         }
 | |
|       );
 | |
|       default = { };
 | |
|     };
 | |
| 
 | |
|     ensureKeys = mkOption {
 | |
|       type = types.attrsOf (
 | |
|         types.submodule {
 | |
|           options = {
 | |
|             s3AccessKeyFile = mkOption { type = types.path; };
 | |
| 
 | |
|             s3SecretKeyFile = mkOption { type = types.path; };
 | |
| 
 | |
|             # TODO: assert at least one of these is true
 | |
|             # NOTE: this currently needs to be done at the top level module
 | |
|             ensureAccess = mkOption {
 | |
|               type = types.attrsOf (
 | |
|                 types.submodule {
 | |
|                   options = {
 | |
|                     read = mkOption {
 | |
|                       type = types.bool;
 | |
|                       default = false;
 | |
|                     };
 | |
|                     write = mkOption {
 | |
|                       type = types.bool;
 | |
|                       default = false;
 | |
|                     };
 | |
|                     owner = mkOption {
 | |
|                       type = types.bool;
 | |
|                       default = false;
 | |
|                     };
 | |
|                   };
 | |
|                 }
 | |
|               );
 | |
|               default = [ ];
 | |
|             };
 | |
|           };
 | |
|         }
 | |
|       );
 | |
|       default = { };
 | |
|     };
 | |
| 
 | |
|     api = {
 | |
|       domain = mkOption {
 | |
|         type = types.str;
 | |
|         default = "s3.garage.${config.fediversity.domain}";
 | |
|       };
 | |
|       port = mkOption {
 | |
|         type = types.int;
 | |
|         default = 3900;
 | |
|       };
 | |
|       url = mkOption {
 | |
|         type = types.str;
 | |
|         default = "http://${config.fediversity.garage.api.domain}:${toString config.fediversity.garage.api.port}";
 | |
|       };
 | |
|     };
 | |
| 
 | |
|     rpc = {
 | |
|       port = mkOption {
 | |
|         type = types.int;
 | |
|         default = 3901;
 | |
|       };
 | |
|     };
 | |
| 
 | |
|     web = {
 | |
|       rootDomain = mkOption {
 | |
|         type = types.str;
 | |
|         default = "web.garage.${config.fediversity.domain}";
 | |
|       };
 | |
|       internalPort = mkOption {
 | |
|         type = types.int;
 | |
|         default = 3902;
 | |
|       };
 | |
|       domainForBucket = mkOption {
 | |
|         type = types.functionTo types.str;
 | |
|         default = bucket: "${bucket}.${config.fediversity.garage.web.rootDomain}";
 | |
|       };
 | |
|       urlForBucket = mkOption {
 | |
|         type = types.functionTo types.str;
 | |
|         default = bucket: "http://${config.fediversity.garage.web.domainForBucket bucket}";
 | |
|       };
 | |
|     };
 | |
|   };
 | |
| }
 |