|
27 | 27 | }; |
28 | 28 | ecoflowAccessKeyFile = mkOption { |
29 | 29 | type = types.path; |
30 | | - default = /etc/ecoflow-access-key; |
| 30 | + default = "/etc/ecoflow-access-key"; |
31 | 31 | description = '' |
32 | 32 | Path to the file with your personal api access string from the Ecoflow development website <https://developer-eu.ecoflow.com>. |
33 | 33 | Do to share or commit your plaintext scecrets to a public repo use: agenix or soaps. |
34 | 34 | ''; |
35 | 35 | }; |
36 | 36 | ecoflowSecretKeyFile = mkOption { |
37 | 37 | type = types.path; |
38 | | - default = /etc/ecoflow-secret-key; |
| 38 | + default = "/etc/ecoflow-secret-key"; |
39 | 39 | description = '' |
40 | 40 | Path to the file with your personal api secret string from the Ecoflow development website <https://developer-eu.ecoflow.com>. |
41 | 41 | Do to share or commit your plaintext scecrets to a public repo use: agenix or soaps. |
42 | 42 | ''; |
43 | 43 | }; |
44 | 44 | ecoflowEmailFile = mkOption { |
45 | 45 | type = types.path; |
46 | | - default = /etc/ecoflow-email; |
| 46 | + default = "/etc/ecoflow-email"; |
47 | 47 | description = '' |
48 | 48 | Path to the file with your personal ecoflow app login email address. |
49 | 49 | Do to share or commit your plaintext scecrets to a public repo use: agenix or soaps. |
50 | 50 | ''; |
51 | 51 | }; |
52 | 52 | ecoflowPasswordFile = mkOption { |
53 | 53 | type = types.path; |
54 | | - default = /etc/ecoflow-password; |
| 54 | + default = "/etc/ecoflow-password"; |
55 | 55 | description = '' |
56 | 56 | Path to the file with your personal ecoflow app login email password. |
57 | 57 | Do to share or commit your plaintext passwords to a public repo use: agenix or soaps here! |
58 | 58 | ''; |
59 | 59 | }; |
60 | 60 | ecoflowDevicesFile = mkOption { |
61 | 61 | type = types.path; |
62 | | - default = /etc/ecoflow-devices; |
| 62 | + default = "/etc/ecoflow-devices"; |
63 | 63 | description = '' |
64 | 64 | File must contain one line, example: R3300000,R3400000,NC430000,.... |
65 | 65 | The list of devices serial numbers separated by comma. For instance: SN1,SN2,SN3. |
|
69 | 69 | }; |
70 | 70 | ecoflowDevicesPrettyNamesFile = mkOption { |
71 | 71 | type = types.path; |
72 | | - default = /etc/ecoflow-devices-pretty-names; |
| 72 | + default = "/etc/ecoflow-devices-pretty-names"; |
73 | 73 | description = '' |
74 | 74 | File must contain one line, example: {"R3300000":"Delta 2","R3400000":"Delta Pro",...} |
75 | 75 | The key/value map of custom names for your devices. Key is a serial number, value is a device name you want |
|
0 commit comments