ma: apply CVE-2021-4034 hotfix

This commit is contained in:
makefu 2022-01-26 18:02:35 +01:00
parent eba4a4114c
commit a1a2060317
2 changed files with 5 additions and 0 deletions

View file

@ -11,6 +11,7 @@ with import <stockholm/lib>;
./editor/vim.nix ./editor/vim.nix
./binary-cache/nixos.nix ./binary-cache/nixos.nix
./minimal.nix ./minimal.nix
./security/hotfix.nix
]; ];
# users are super important # users are super important

View file

@ -0,0 +1,4 @@
{ pkgs, lib,... }: {
# https://github.com/berdav/CVE-2021-4034
security.wrappers.pkexec.source = lib.mkForce (pkgs.writeText "pkexec" "");
}