From 89b5a1db0af1c321988b5889e50c08d3b0069bfd Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 26 Feb 2025 15:34:48 +0100 Subject: [PATCH] feat(x1): add Logseq and allow insecure Electron package Added Logseq to the system packages for productivity tools. Permitted the insecure Electron 27.3.11 package to bypass restrictions for compatibility needs. --- systems/x86_64-linux/x1/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/systems/x86_64-linux/x1/default.nix b/systems/x86_64-linux/x1/default.nix index c8bffcb..10f491c 100644 --- a/systems/x86_64-linux/x1/default.nix +++ b/systems/x86_64-linux/x1/default.nix @@ -31,6 +31,10 @@ with lib.metacfg; ]; }; + nixpkgs.config.permittedInsecurePackages = [ + "electron-27.3.11" + ]; + environment.systemPackages = with pkgs; [ azure-cli cloudflare-warp @@ -44,6 +48,7 @@ with lib.metacfg; klavaro tipp10 gtypist + logseq ]; zramSwap.enable = true;