summaryrefslogtreecommitdiff
path: root/overlays/phoenix.nix
diff options
context:
space:
mode:
Diffstat (limited to 'overlays/phoenix.nix')
-rw-r--r--overlays/phoenix.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/overlays/phoenix.nix b/overlays/phoenix.nix
deleted file mode 100644
index ad9bab4..0000000
--- a/overlays/phoenix.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-final: prev: let
- phoenix-src = prev.fetchFromGitHub {
- owner = "celenityy";
- repo = "Phoenix";
- rev = "07d9be8cbf938962f9847b0970274b885ff48792";
- hash = "sha256-I9pKhfhAz3JsGBLIqr9MNycTEQn0Bc3jzf0mKeWLlsE=";
- };
-in {
- phoenix = (final.callPackage (import "${phoenix-src}/nix/package.nix")
- {
- }).overrideAttrs {
- patches = [
- ../patches/0001-autoDisableScopes-unlocked.patch
- ];
- };
- withPhoenix = firefoxPackage:
- firefoxPackage.override {
- extraPoliciesFiles = ["${final.phoenix}/policies.json"];
- extraPrefsFiles = ["${final.phoenix}/phoenix.cfg"];
- };
-}