From b4e97cb86e95d2e200af79647bb8403dcd85649c Mon Sep 17 00:00:00 2001 From: Adrian Gunnar Lauterer Date: Thu, 18 Apr 2024 23:06:02 +0200 Subject: [PATCH] add dconf to fix easyeffects --- machines/aragon/configuration.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/machines/aragon/configuration.nix b/machines/aragon/configuration.nix index f696e02..37e8676 100644 --- a/machines/aragon/configuration.nix +++ b/machines/aragon/configuration.nix @@ -149,10 +149,14 @@ fonts.packages = with pkgs; [ ]; }; - #allow electron 19 becasue of etcher - nixpkgs.config.permittedInsecurePackages = [ - "electron-19.1.9" - ]; + + programs.dconf.enable = true; #needed for easyeffects for some reason + + + #allow electron 15 becasue of etcher + nixpkgs.config.permittedInsecurePackages = [ + "electron-19.1.9" + ]; # Allow unfree packages nixpkgs.config.allowUnfree = true;