From d34fa72e8570e8d99947ff5746f144d3969c4dfc Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Mon, 27 Jan 2025 11:07:57 +0100 Subject: [PATCH] [Filesystems] fix GOTO in udev rules, fix typo --- filesystems.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/filesystems.nix b/filesystems.nix index 85a7bf1..205ed80 100644 --- a/filesystems.nix +++ b/filesystems.nix @@ -75,8 +75,8 @@ in (optional (!(builtins.isNull cfg.slowFlashScheduler)) '' SUBSYSTEM!="block", GOTO="aviallon_slowflash_end" - KERNEL!="sd[a-z]|nvme[0-9]*n[0-9]*|mmcblk[0-9]", GOTO="end" - ATTR{queue/rotational}!="0", GOTO="end" + KERNEL!="sd[a-z]|nvme[0-9]*n[0-9]*|mmcblk[0-9]", GOTO="aviallon_slowflash_end" + ATTR{queue/rotational}!="0", GOTO="aviallon_slowflash_end" ACTION!="remove", ATTR{queue/scheduler}="${cfg.slowFlashScheduler}" @@ -93,7 +93,7 @@ in ACTION!="remove", TEST=="queue/iosched/low_latency", ATTR{queue/iosched/low_latency}="0" LABEL="aviallon_no_ncq_end" - # END: NCQ disabledf + # END: NCQ disabled LABEL="aviallon_slowflash_end" ''