diff --git a/apps/helium.nix b/apps/helium.nix deleted file mode 100644 index f3a456c..0000000 --- a/apps/helium.nix +++ /dev/null @@ -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; - }; - }; - }; -} diff --git a/common.nix b/common.nix index 82d9abd..18b1fc8 100644 --- a/common.nix +++ b/common.nix @@ -15,7 +15,6 @@ ./settings/users.nix ./settings/shell.nix ./apps/zen.nix - ./apps/helium.nix # Services # ./services/server-permissions.nix diff --git a/flake.lock b/flake.lock index e4a6aef..a43a847 100644 --- a/flake.lock +++ b/flake.lock @@ -66,27 +66,6 @@ "type": "github" } }, - "helium": { - "inputs": { - "nixpkgs": [ - "nixpkgs" - ], - "utils": "utils" - }, - "locked": { - "lastModified": 1776004579, - "narHash": "sha256-9uEVLUueMTPu85dJMXLZ4NU36rCVbvUS/gGO1Eae5mw=", - "owner": "schembriaiden", - "repo": "helium-browser-nix-flake", - "rev": "d69553db8dd48fb6cab8c646b81892890f611a14", - "type": "github" - }, - "original": { - "owner": "schembriaiden", - "repo": "helium-browser-nix-flake", - "type": "github" - } - }, "home-manager": { "inputs": { "nixpkgs": [ @@ -179,46 +158,12 @@ }, "root": { "inputs": { - "helium": "helium", "home-manager": "home-manager", "nix-cachyos-kernel": "nix-cachyos-kernel", "nixpkgs": "nixpkgs_2", "zen-browser": "zen-browser" } }, - "systems": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, - "utils": { - "inputs": { - "systems": "systems" - }, - "locked": { - "lastModified": 1731533236, - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, "zen-browser": { "inputs": { "home-manager": [ diff --git a/flake.nix b/flake.nix index 5d82378..bb65a86 100644 --- a/flake.nix +++ b/flake.nix @@ -15,12 +15,8 @@ }; nix-cachyos-kernel.url = "github:xddxdd/nix-cachyos-kernel/release"; - helium = { - url = "github:schembriaiden/helium-browser-nix-flake"; - inputs.nixpkgs.follows = "nixpkgs"; - }; }; - outputs = { self, nixpkgs, home-manager, zen-browser, nix-cachyos-kernel, helium, ... } @ inputs: + outputs = { self, nixpkgs, home-manager, zen-browser, nix-cachyos-kernel, ... } @ inputs: let system = "x86_64-linux"; mkHost = hostname: nixpkgs.lib.nixosSystem {