px7radio-git packaged for NixOS
Find a file
2026-03-13 02:10:10 -04:00
modules Removed unnecessary devShell 2026-03-13 02:09:24 -04:00
.envrc Initial packaging or 'px7-radio-nix' 2026-03-13 01:46:07 -04:00
.gitignore Removed unnecessary devShell 2026-03-13 02:09:24 -04:00
flake.lock Initial packaging or 'px7-radio-nix' 2026-03-13 01:46:07 -04:00
flake.nix Removed unnecessary devShell 2026-03-13 02:09:24 -04:00
README.md Added 'README.md' 2026-03-13 06:06:18 +00:00

PX7 Terminal Radio

px7-radio-nix

px7-radio by px7nmn, packaged for NixOS! 💕

PX7 Terminal Radio is a lightweight command-line internet radio player written in Python. It allows you to search, stream, and control thousands of online radio stations directly from your terminal. Stations are fetched using the Radio Browser API, and playback is handled through VLC.

Source

Installation

NixOS Flakes

Add the following to your flake.nix inputs

px7-radio-git = {
  url = " https://github.com/foxtrottt/px7-radio-nix.git";
  inputs.nixpkgs.follows = "nixpkgs";
};

Then add the following

environment.systemPackages = [
  inputs.px7-radio-nix.packages.x86_64-linux.default
  ];

or, if you prefer it under Home-Manager

home.packages = [
  inputs.px7-radio-nix.packages.x86_64-linux.default
  ];