122 lines
2.8 KiB
Nix
122 lines
2.8 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib)
|
|
mkIf
|
|
mkEnableOption
|
|
mkPackageOption
|
|
mkOption
|
|
;
|
|
|
|
cfg = config.programs.pyradio;
|
|
in
|
|
{
|
|
meta.maintainers = with lib.maintainers; [ magicquark ];
|
|
|
|
options.programs.pyradio = {
|
|
enable = mkEnableOption "pyradio";
|
|
|
|
package = mkPackageOption pkgs "pyradio" { nullable = true; };
|
|
|
|
settings = mkOption {
|
|
type =
|
|
with lib.types;
|
|
attrsOf (oneOf [
|
|
str
|
|
int
|
|
bool
|
|
]);
|
|
default = { };
|
|
example = {
|
|
enable_clock = true;
|
|
enable_notifications = 0;
|
|
player = "mpv";
|
|
theme = "dark_16_colors";
|
|
time_format = 0;
|
|
use_transparency = true;
|
|
};
|
|
description = ''
|
|
Options to add to the PyRadio {file}`config` file.
|
|
See <https://github.com/coderholic/pyradio/blob/master/pyradio/config>
|
|
for available options.
|
|
'';
|
|
};
|
|
|
|
stations = mkOption {
|
|
type =
|
|
with lib.types;
|
|
listOf (submodule {
|
|
options = {
|
|
name = mkOption {
|
|
type = str;
|
|
description = "Display name of the radio station.";
|
|
};
|
|
|
|
url = mkOption {
|
|
type = str;
|
|
description = "Stream URL of the radio station.";
|
|
};
|
|
};
|
|
});
|
|
default = [ ];
|
|
example = [
|
|
{
|
|
name = "DEF CON Radio (SomaFM)";
|
|
url = "https://somafm.com/defcon256.pls";
|
|
}
|
|
{
|
|
name = "Intense Radio - We Love Dance!";
|
|
url = "https://secure.live-streams.nl/flac.ogg";
|
|
}
|
|
];
|
|
description = ''
|
|
Radio stations to add to the {file}`stations.csv` file.
|
|
If empty, {file}`stations.csv` defaults to the built-in playlist.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = mkIf (cfg.package != null) [ cfg.package ];
|
|
|
|
xdg.configFile."pyradio/config" = mkIf (cfg.settings != { }) {
|
|
text =
|
|
let
|
|
renderedSettings = lib.generators.toINIWithGlobalSection { } {
|
|
globalSection = cfg.settings;
|
|
};
|
|
in
|
|
lib.removeSuffix "\n\n" ''
|
|
# Generated by Home Manager.
|
|
|
|
${renderedSettings}
|
|
'';
|
|
};
|
|
|
|
xdg.configFile."pyradio/stations.csv" = mkIf (cfg.stations != [ ]) {
|
|
text =
|
|
let
|
|
escapeCSV =
|
|
s:
|
|
if lib.hasInfix "," s || lib.hasInfix "\"" s then
|
|
"\"${lib.replaceStrings [ "\"" ] [ "\"\"" ] s}\""
|
|
else
|
|
s;
|
|
|
|
stationsToCSV =
|
|
stations:
|
|
let
|
|
body = lib.concatMapStringsSep "\n" (
|
|
station: "${escapeCSV station.name},${escapeCSV station.url}"
|
|
) stations;
|
|
in
|
|
"${body}\n";
|
|
in
|
|
stationsToCSV cfg.stations;
|
|
};
|
|
};
|
|
}
|