treewide: remove redundant parentheses

Auto-fixed by nixf-diagnose.
This commit is contained in:
Wolfgang Walther
2025-09-01 13:18:30 +02:00
parent c283f32d29
commit 91a8fee3aa
336 changed files with 826 additions and 829 deletions

View File

@@ -1249,7 +1249,7 @@ in
devicesWithClevis = filterAttrs (device: _: (hasAttr device clevis.devices)) luks.devices;
in
mkIf (clevis.enable && systemd.enable) (
(mapAttrs' (
mapAttrs' (
name: _:
nameValuePair "cryptsetup-clevis-${name}" {
wantedBy = [ "systemd-cryptsetup@${utils.escapeSystemdPath name}.service" ];
@@ -1281,7 +1281,7 @@ in
ExecStop = "${config.boot.initrd.systemd.package.util-linux}/bin/umount /clevis-${name}";
};
}
) devicesWithClevis)
) devicesWithClevis
);
environment.systemPackages = [ pkgs.cryptsetup ];