summary refs log tree commit diff
path: root/pkgs/applications/networking/remote
diff options
context:
space:
mode:
authorLevi Gross <levi@levigross.com>2023-05-10 10:08:51 -0400
committerLevi Gross <levi@levigross.com>2023-05-10 10:08:51 -0400
commitfdfe19932f5b92662b9d2c8c6a6902cb06b3debd (patch)
treecdbd21b97d7b17b4a0e1d9da3c8d03c2d84a280b /pkgs/applications/networking/remote
parent9f805a40876f52643fd0543fe3bbe5b93b257dba (diff)
downloadnixpkgs-fdfe19932f5b92662b9d2c8c6a6902cb06b3debd.tar
nixpkgs-fdfe19932f5b92662b9d2c8c6a6902cb06b3debd.tar.gz
nixpkgs-fdfe19932f5b92662b9d2c8c6a6902cb06b3debd.tar.bz2
nixpkgs-fdfe19932f5b92662b9d2c8c6a6902cb06b3debd.tar.lz
nixpkgs-fdfe19932f5b92662b9d2c8c6a6902cb06b3debd.tar.xz
nixpkgs-fdfe19932f5b92662b9d2c8c6a6902cb06b3debd.tar.zst
nixpkgs-fdfe19932f5b92662b9d2c8c6a6902cb06b3debd.zip
Use `set-default` so that we don't override the exisiting
environment variable
Diffstat (limited to 'pkgs/applications/networking/remote')
-rw-r--r--pkgs/applications/networking/remote/remmina/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/remote/remmina/default.nix b/pkgs/applications/networking/remote/remmina/default.nix
index 96585b9fa12..6653e1ac351 100644
--- a/pkgs/applications/networking/remote/remmina/default.nix
+++ b/pkgs/applications/networking/remote/remmina/default.nix
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
 
   preFixup = ''
     gappsWrapperArgs+=(
-      --set SSL_CERT_DIR "/etc/ssl/certs/"
+      --set-default SSL_CERT_DIR "/etc/ssl/certs/"
       --prefix LD_LIBRARY_PATH : "${libX11.out}/lib"
     )
   '';