diff options
author | Vincent Ambo <mail@tazj.in> | 2022-03-10T15·04+0200 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-03-11T15·16+0000 |
commit | a0a79f493d19dd550781ea699c3af5e6f091cbb4 (patch) | |
tree | 57b8d16962de4911a21816b144b2f731243a0a97 /users/tazjin | |
parent | b2ad7ccad93f6c2ad9e16f4f71493de8bb26e9df (diff) |
fix(tazjin/polyanka): Apply strongswan workaround r/3904
Change-Id: If2ec62923fd262922d11be16e2cb0afe6360b785 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5381 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'users/tazjin')
-rw-r--r-- | users/tazjin/nixos/polyanka/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/users/tazjin/nixos/polyanka/default.nix b/users/tazjin/nixos/polyanka/default.nix index b17a40c1027d..b02f38caec86 100644 --- a/users/tazjin/nixos/polyanka/default.nix +++ b/users/tazjin/nixos/polyanka/default.nix @@ -21,6 +21,12 @@ in nix.settings.trusted-users = [ "tazjin" ]; + # Work around strongswan 5.9.4 being incompatible with servers not + # patched against some CVE. I need this for work .. + nixpkgs.overlays = [ + depot.third_party.overlays.strongswan-workaround + ]; + fileSystems."/" = { device = "/dev/disk/by-uuid/4c51357a-1e34-4b59-b169-63af1fcdce71"; |