px7radio-git packaged for NixOS
- Nix 100%
| modules | ||
| .envrc | ||
| .gitignore | ||
| flake.lock | ||
| flake.nix | ||
| README.md | ||
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.
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
];