all repos — nixfiles @ f0fb7b08933dbdbafb0a0117120948812e29b0ff

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

Enable bfq IO scheduler
Alan Pearce alan@alanpearce.eu
Tue, 27 Aug 2019 15:04:53 +0200
commit

f0fb7b08933dbdbafb0a0117120948812e29b0ff

parent

4b707d4833a602154adc774cd96248079ce81b0b

1 files 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" ];
 }