nix flake for the helium web browser
- Nix 67.1%
- Shell 32.9%
| .gitea/workflows | add actions updater | |
| .gitignore | initial helium nix flake commit | |
| flake.lock | initial helium nix flake commit | |
| flake.nix | desktop entry fix | |
| README.md | Update README.md | |
| update.sh | update helium | |
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