This commit is contained in:
Sebastian Moser
2023-11-21 21:28:24 +01:00
parent 6927775309
commit 65963aa32f

View File

@@ -20,15 +20,15 @@
#nixpkgs.hostPlatform.system = "aarch64-linux"; #nixpkgs.hostPlatform.system = "aarch64-linux";
#nixpkgs.buildPlatform.system = "x86_64-linux"; #nixpkgs.buildPlatform.system = "x86_64-linux";
nixpkgs.overlays = [ nixpkgs.overlays = [
{ (outerFinal: outerPrev: {
openfortivpn = pkgs.openfortivpn.overrideAttrs (final: prev: { openfortivpn = outerPrev.openfortivpn.overrideAttrs (final: prev: {
configureFlags = prev.configureFlags or [] ++ [ configureFlags = prev.configureFlags or [] ++ [
"--disable-proc" "--disable-proc"
"--with-rt_dst=yes" "--with-rt_dst=yes"
"--with-pppd=/usr/sbin/pppd" "--with-pppd=/usr/sbin/pppd"
]; ];
}); });
} })
]; ];
hardware.enableRedistributableFirmware = true; hardware.enableRedistributableFirmware = true;