diff options
author | Vincent Ambo <tazjin@tvl.su> | 2024-03-31T21·40+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-03-31T22·08+0000 |
commit | b67b0a6d7243135f3341c0a449895d209d0908d8 (patch) | |
tree | 1009866fa690c2a9e51d2db21923ee6054bd251e | |
parent | 9204b58f158cedb1cff7746c7d465573952e1c4f (diff) |
chore(3p/nixpkgs): try disabling Emacs overlay r/7836
Change-Id: I63d9d1cc7221bd3f18b0157f423cf3e369482a2f Reviewed-on: https://cl.tvl.fyi/c/depot/+/11327 Reviewed-by: sterni <sternenseemann@systemli.org> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
-rw-r--r-- | third_party/nixpkgs/default.nix | 1 | ||||
-rw-r--r-- | users/tazjin/home/shared.nix | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix index 0db42f154090..ae379a90fa74 100644 --- a/third_party/nixpkgs/default.nix +++ b/third_party/nixpkgs/default.nix @@ -65,7 +65,6 @@ import nixpkgsSrc (commonNixpkgsArgs // { stableOverlay ] ++ (if depotOverlays then [ depot.third_party.overlays.haskell - depot.third_party.overlays.emacs depot.third_party.overlays.tvl depot.third_party.overlays.ecl-static depot.third_party.overlays.dhall diff --git a/users/tazjin/home/shared.nix b/users/tazjin/home/shared.nix index 65e18fa8d8db..38d8add4ac2f 100644 --- a/users/tazjin/home/shared.nix +++ b/users/tazjin/home/shared.nix @@ -8,7 +8,7 @@ let # URL handler to open `tg://` URLs in telega.el telega-launcher = pkgs.writeShellScriptBin "telega-launcher" '' echo "Opening ''${1} in telega.el ..." - ${pkgs.emacs-unstable}/bin/emacsclient -e "(telega-browse-url \"''${1}\")" + ${depot.users.tazjin.emacs.emacs}/bin/emacsclient -e "(telega-browse-url \"''${1}\")" ''; in { |