apps: add helium browser flake

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
rope 2026-08-19 17:02:26 +01:00
parent d8029c5657
commit 58a6425898
4 changed files with 115 additions and 13 deletions

9
apps/helium.nix Normal file
View file

@ -0,0 +1,9 @@
#./apps/helium.nix
{ inputs, pkgs, lib, config, ... }:
{
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
environment.systemPackages = [
inputs.helium-browser.packages.${pkgs.stdenv.hostPlatform.system}.default
];
};
}