From 5bb28dd3e3d75dd4f601e85e70804f963a81d631 Mon Sep 17 00:00:00 2001 From: Innovation Date: Wed, 1 May 2024 04:33:02 -0500 Subject: [PATCH] Allow electron version required by r2modman --- nixos/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 4152122..2b4404c 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -109,6 +109,11 @@ programs.steam.enable = true; + nixpkgs.config.permittedInsecurePackages = [ + "electron-25.9.0" # EOL, but is required by r2modman + ]; + + # Some programs need SUID wrappers, can be configured further or are # started in user sessions. programs.mtr.enable = true;