diff options
-rw-r--r-- | third_party/nixpkgs/default.nix | 4 | ||||
-rw-r--r-- | users/Profpatsch/alacritty.nix | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix index 0f388df694a3..23f09ff5f716 100644 --- a/third_party/nixpkgs/default.nix +++ b/third_party/nixpkgs/default.nix @@ -27,10 +27,6 @@ let # Use `stableNixpkgs` from above. stableOverlay = _unstableSelf: _unstableSuper: { - # alacritty on unstable fails because it can’t find the libGLX. - # This is too hard to debug right now, let’s hope somebody else solves it for us. - alacritty-stable = stableNixpkgs.alacritty; - # emacs27 is gone from unstable, but people should upgrade at # their own pace. emacs27 = builtins.trace "emacs27 is deprecated, please migrate to emacs28" diff --git a/users/Profpatsch/alacritty.nix b/users/Profpatsch/alacritty.nix index 2512de3b0966..d2cb8de2fc86 100644 --- a/users/Profpatsch/alacritty.nix +++ b/users/Profpatsch/alacritty.nix @@ -1,7 +1,7 @@ { depot, pkgs, lib, ... }: let - bins = depot.nix.getBins pkgs.alacritty-stable [ "alacritty" ]; + bins = depot.nix.getBins pkgs.alacritty [ "alacritty" ]; config = depot.users.Profpatsch.importDhall.importDhall { |