From 65963aa32f12eaef765adefb67c008a84f23df1c Mon Sep 17 00:00:00 2001 From: Sebastian Moser Date: Tue, 21 Nov 2023 21:28:24 +0100 Subject: [PATCH] ... --- hosts/lush.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/lush.nix b/hosts/lush.nix index 0c48719..2d94fbb 100644 --- a/hosts/lush.nix +++ b/hosts/lush.nix @@ -20,15 +20,15 @@ #nixpkgs.hostPlatform.system = "aarch64-linux"; #nixpkgs.buildPlatform.system = "x86_64-linux"; nixpkgs.overlays = [ - { - openfortivpn = pkgs.openfortivpn.overrideAttrs (final: prev: { + (outerFinal: outerPrev: { + openfortivpn = outerPrev.openfortivpn.overrideAttrs (final: prev: { configureFlags = prev.configureFlags or [] ++ [ "--disable-proc" "--with-rt_dst=yes" "--with-pppd=/usr/sbin/pppd" ]; }); - } + }) ]; hardware.enableRedistributableFirmware = true;