all repos — nixfiles @ f0fb7b08933dbdbafb0a0117120948812e29b0ff

System and user configuration, managed by nix and home-manager

Enable bfq IO scheduler

Alan Pearce
commit

f0fb7b08933dbdbafb0a0117120948812e29b0ff

parent

4b707d4833a602154adc774cd96248079ce81b0b

1 file changed, 2 insertions(+), 0 deletions(-)

jump to
M modules/hardware/bare-metal.nixmodules/hardware/bare-metal.nix
@@ -18,6 +18,8 @@ };
boot.tmpOnTmpfs = true; + boot.kernelModules = [ "bfq" ]; + fileSystems."/".options = [ "noatime" "nodiratime" ]; fileSystems."/home".options = [ "noatime" "nodiratime" ]; }