nixos/authelia: lib.filterAttrs -> lib.removeAttrs

This commit is contained in:
h7x4
2025-10-26 15:21:22 +09:00
parent e3366549da
commit 71644ede59
+1 -1
View File
@@ -270,7 +270,7 @@ let
lib.updateManyAttrsByPath [
{
path = lib.init pathList;
update = old: lib.filterAttrs (n: v: n != (lib.last pathList)) old;
update = old: lib.removeAttrs old [ (lib.last pathList) ];
}
] set;
in