Added missing defaults

This commit is contained in:
Sebastian 2024-02-11 17:43:48 +01:00
parent 559256bee4
commit 11d1ac6dae
1 changed files with 9 additions and 0 deletions

View File

@ -10,6 +10,7 @@ in
satnogs-api-token = mkOption {
type = types.str;
default = "";
description = mdDoc ''
It is recommended to use additional-env-files instead and provide the token,
via something like agenix, so that it wont end up in the nix-store;
@ -26,6 +27,7 @@ in
satnogs-soapy-rx-device = mkOption {
type = types.str;
default = "driver=rtlsdr";
description = mdDoc ''
If you are using an RTL-SDR, this is `driver=rtlsdr`.
For other devices tested configurations can be found at [Software Defined Radio](https://wiki.satnogs.org/Software_Defined_Radio).
@ -37,6 +39,7 @@ in
satnogs-antenna = mkOption {
type = types.str;
default = "RX";
description = mdDoc ''
If you are using an RTL-SDR, this is RX.
For other devices tested configurations can be found at [Software Defined Radio](https://wiki.satnogs.org/Software_Defined_Radio).
@ -47,6 +50,7 @@ in
satnogs-rx-samp-rate = mkOption {
type = types.str;
default = "2.048e6";
description = mdDoc ''
Specify the receiver sampling rate.
Recommended value for RTL-SDR: 2.048e6 (for 2Msps),
@ -58,6 +62,7 @@ in
satnogs-rf-gain = mkOption {
type = types.str;
default = "32.8";
description = mdDoc ''
RF Gain value for your SDR hardware.
@ -69,6 +74,7 @@ in
satnogs-station-elev = mkOption {
type = types.str;
default = "";
description = mdDoc ''
The height of your ground station above sea level in metres.
'';
@ -76,6 +82,7 @@ in
satnogs-station-id = mkOption {
type = types.str;
default = "";
description = mdDoc ''
The **numeric ID** assigned to your station in the SatNOGS Network site when the groundstation was created.
'';
@ -83,6 +90,7 @@ in
satnogs-station-lat = mkOption {
type = types.str;
default = "";
description = mdDoc ''
The latitude of your station. North is positive, south is negative.
'';
@ -90,6 +98,7 @@ in
satnogs-station-lon = mkOption {
type = types.str;
default = "";
description = mdDoc ''
The longitude of your station. East is positive, west is negative.
'';