This commit is contained in:
Sebastian Moser
2023-11-21 21:26:08 +01:00
parent 56fde9df8c
commit 6927775309
6 changed files with 69 additions and 35 deletions

View File

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