From 0b92a67c7739f69039bcc6709d73b9304e179441 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Wed, 4 Oct 2023 00:43:19 +0200 Subject: [PATCH] dregil: Downgrade electron to electron-25 electron-26 has a bug so that applications stop working after a couple of seconds. --- outputs/homeConfigurations/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/outputs/homeConfigurations/default.nix b/outputs/homeConfigurations/default.nix index ddea550..23153b2 100644 --- a/outputs/homeConfigurations/default.nix +++ b/outputs/homeConfigurations/default.nix @@ -1,10 +1,11 @@ inputs: with inputs; let + electron-overlay = final: prev: { electron = final.electron_25; }; pkgs = import nixpkgs-unstable { system = "x86_64-linux"; config.allowUnfree = true; - overlays = [ emacs.overlay ]; + overlays = [ emacs.overlay electron-overlay ]; }; in { "alex@dregil" = home-manager-unstable.lib.homeManagerConfiguration {