A standalone Nix flake for the Helium browser, a private, fast, and honest web browser based on ungoogled-chromium.
You can run Helium directly without installing it:
nix run github:schembriaiden/helium-browser-nix-flakeAdd this flake to your inputs:
inputs.helium = {
url = "github:schembriaiden/helium-browser-nix-flake";
inputs.nixpkgs.follows = "nixpkgs";
};Then add it to your packages:
environment.systemPackages = [
inputs.helium.packages.${system}.default
];To build the package locally:
nix build .The binary will be available at ./result/bin/helium.
If you find something broken or not working as expected, feel free to open an issue or submit a pull request.
This flake is licensed under the MIT License. The Helium browser itself is licensed under the GPL-3.0 License.