Remove Helium browser

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
ediblerope 2026-04-12 21:18:25 +01:00
parent 5d7f6c78ef
commit e3a208deae
4 changed files with 1 additions and 83 deletions

View file

@ -1,22 +0,0 @@
#./apps/helium.nix
{ inputs, pkgs, lib, config, ... }:
{
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
environment.systemPackages = [
inputs.helium.packages.${pkgs.stdenv.hostPlatform.system}.default
];
# Chromium policies for Helium (Chromium-based)
programs.chromium = {
enable = true;
extensions = [
"ghmbeldphafepmbegfdlkpapadhbakde" # Proton Pass
];
extraOpts = {
PasswordManagerEnabled = false;
AutofillCreditCardEnabled = false;
AutofillAddressEnabled = false;
};
};
};
}