1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/radio-cli/example-config.nix
2025-07-17 14:21:31 -05:00

22 lines
477 B
Nix

{
programs.radio-cli = {
enable = true;
settings = {
config_version = "2.3.0";
max_lines = 7;
country = "ES";
data = [
{
station = "lofi";
url = "https://www.youtube.com/live/jfKfPfyJRdk?si=WDl-XdfuhxBfe6XN";
}
];
};
};
nmt.script = ''
assertFileExists home-files/.config/radio-cli/config.json
assertFileContent home-files/.config/radio-cli/config.json \
${./config.json}
'';
}