summaryrefslogtreecommitdiff
path: root/config/boot.nix
diff options
context:
space:
mode:
Diffstat (limited to 'config/boot.nix')
-rw-r--r--config/boot.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/boot.nix b/config/boot.nix
index 257f64d..cf86ea2 100644
--- a/config/boot.nix
+++ b/config/boot.nix
@@ -5,5 +5,7 @@
grub.enable = true;
};
boot.loader.grub.device = "/dev/disk/by-id/ata-SATA_SSD_A45E07221AE300053322";
- boot.kernelPackages = pkgs.linuxPackages_latest;
+ # This makes the system use the XanMod Linux kernel, a set of
+ # patches reducing latency and improving performance.
+ boot.kernelPackages = pkgs.linuxPackages_xanmod_latest;
}