diff --git a/options.xhtml b/options.xhtml index e1dfea114..c066257a2 100644 --- a/options.xhtml +++ b/options.xhtml @@ -63098,6 +63098,123 @@ attribute set of anything

+
+ + programs.radio-active.enable + + +
+
+

Whether to enable Enable installing radio-active and writing configuration file.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/radio-active.nix> + +
+
+
+ + programs.radio-active.package + + +
+
+

The radio-active package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.radio-active

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/radio-active.nix> + +
+
+
+ + programs.radio-active.aliases + + +
+
+

Key/value pairs where the key is name of radio station and value is URL.

+ +

Type: +attribute set of non-empty string

+ +

Default: +{ }

+ +

Example:

{
+  "Deep House Lounge" = "http://198.15.94.34:8006/stream";
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/radio-active.nix> + +
+
+
+ + programs.radio-active.settings + + +
+
+

Declare-able configurations for radio-active written to +$XDG_CONFIG_HOME/radio-active/configs.ini.

+ +

Type: +attribute set of attribute set of (non-empty string or (nonnegative integer or floating point number, meaning >=0))

+ +

Default: +{ }

+ +

Example:

{
+  filepath = "/home/{user}/recordings/radioactive/";
+  filetype = "mp3";
+  filter = "none";
+  limit = 41;
+  loglevel = "debug";
+  player = "ffplay";
+  sort = "votes";
+  volume = 68;
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/radio-active.nix> + +
+
programs.radio-cli.enable