1
0
Fork
You've already forked heliumnix
0
nix flake for the helium web browser
  • Nix 67.1%
  • Shell 32.9%
2026年04月15日 18:50:30 -04:00
.gitea/workflows add actions updater 2026年04月15日 17:32:33 -04:00
.gitignore initial helium nix flake commit 2026年04月15日 17:19:31 -04:00
flake.lock initial helium nix flake commit 2026年04月15日 17:19:31 -04:00
flake.nix desktop entry fix 2026年04月15日 18:50:30 -04:00
README.md Update README.md 2026年04月15日 23:57:36 +02:00
update.sh update helium 2026年04月15日 17:28:00 -04:00

heliumnix

Nix flake for Helium, a private, fast and honest web browser.

Usage

Add to your flake.nix inputs:

inputs = {
 nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
 heliumnix = {
 url = "git+https://codeberg.org/rozodru/heliumnix.git";
 inputs.nixpkgs.follows = "nixpkgs";
 };
};

Then add to your system packages:

environment.systemPackages = [
 inputs.heliumnix.packages.${system}.default
];

Or with Home Manager:

home.packages = [
 inputs.heliumnix.packages.${pkgs.system}.default
];

Run without installing

nix run git+https://codeberg.org/rozodru/heliumnix.git