2021-07-03 13:40:22 +02:00
|
|
|
# Linux Kernel {#sec-kernel-config}
|
|
|
|
|
|
|
|
You can override the Linux kernel and associated packages using the
|
|
|
|
option `boot.kernelPackages`. For instance, this selects the Linux 3.10
|
|
|
|
kernel:
|
|
|
|
|
|
|
|
```nix
|
2021-09-07 09:30:10 +02:00
|
|
|
boot.kernelPackages = pkgs.linuxKernel.packages.linux_3_10;
|
2021-07-03 13:40:22 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Note that this not only replaces the kernel, but also packages that are
|
|
|
|
specific to the kernel version, such as the NVIDIA video drivers. This
|
|
|
|
ensures that driver packages are consistent with the kernel.
|
|
|
|
|
2021-09-07 09:30:10 +02:00
|
|
|
While `pkgs.linuxKernel.packages` contains all available kernel packages,
|
|
|
|
you may want to use one of the unversioned `pkgs.linuxPackages_*` aliases
|
|
|
|
such as `pkgs.linuxPackages_latest`, that are kept up to date with new
|
|
|
|
versions.
|
|
|
|
|
2022-12-06 13:47:40 +01:00
|
|
|
Please note that the current convention in NixOS is to only keep actively
|
|
|
|
maintained kernel versions on both unstable and the currently supported stable
|
|
|
|
release(s) of NixOS. This means that a non-longterm kernel will be removed after it's
|
|
|
|
abandoned by the kernel developers, even on stable NixOS versions. If you
|
|
|
|
pin your kernel onto a non-longterm version, expect your evaluation to fail as
|
|
|
|
soon as the version is out of maintenance.
|
|
|
|
|
|
|
|
Longterm versions of kernels will be removed before the next stable NixOS that will
|
|
|
|
exceed the maintenance period of the kernel version.
|
|
|
|
|
2021-07-03 13:40:22 +02:00
|
|
|
The default Linux kernel configuration should be fine for most users.
|
|
|
|
You can see the configuration of your current kernel with the following
|
|
|
|
command:
|
|
|
|
|
|
|
|
```ShellSession
|
|
|
|
zcat /proc/config.gz
|
|
|
|
```
|
|
|
|
|
|
|
|
If you want to change the kernel configuration, you can use the
|
|
|
|
`packageOverrides` feature (see [](#sec-customising-packages)). For
|
|
|
|
instance, to enable support for the kernel debugger KGDB:
|
|
|
|
|
|
|
|
```nix
|
2021-09-07 09:30:10 +02:00
|
|
|
nixpkgs.config.packageOverrides = pkgs: pkgs.lib.recursiveUpdate pkgs {
|
|
|
|
linuxKernel.kernels.linux_5_10 = pkgs.linuxKernel.kernels.linux_5_10.override {
|
|
|
|
extraConfig = ''
|
|
|
|
KGDB y
|
|
|
|
'';
|
2021-07-03 13:40:22 +02:00
|
|
|
};
|
2021-09-07 09:30:10 +02:00
|
|
|
};
|
2021-07-03 13:40:22 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
`extraConfig` takes a list of Linux kernel configuration options, one
|
|
|
|
per line. The name of the option should not include the prefix
|
|
|
|
`CONFIG_`. The option value is typically `y`, `n` or `m` (to build
|
|
|
|
something as a kernel module).
|
|
|
|
|
|
|
|
Kernel modules for hardware devices are generally loaded automatically
|
|
|
|
by `udev`. You can force a module to be loaded via
|
2021-07-04 02:24:44 +02:00
|
|
|
[](#opt-boot.kernelModules), e.g.
|
2021-07-03 13:40:22 +02:00
|
|
|
|
|
|
|
```nix
|
|
|
|
boot.kernelModules = [ "fuse" "kvm-intel" "coretemp" ];
|
|
|
|
```
|
|
|
|
|
|
|
|
If the module is required early during the boot (e.g. to mount the root
|
2021-07-04 02:24:44 +02:00
|
|
|
file system), you can use [](#opt-boot.initrd.kernelModules):
|
2021-07-03 13:40:22 +02:00
|
|
|
|
|
|
|
```nix
|
|
|
|
boot.initrd.kernelModules = [ "cifs" ];
|
|
|
|
```
|
|
|
|
|
|
|
|
This causes the specified modules and their dependencies to be added to
|
|
|
|
the initial ramdisk.
|
|
|
|
|
|
|
|
Kernel runtime parameters can be set through
|
2021-07-04 02:24:44 +02:00
|
|
|
[](#opt-boot.kernel.sysctl), e.g.
|
2021-07-03 13:40:22 +02:00
|
|
|
|
|
|
|
```nix
|
|
|
|
boot.kernel.sysctl."net.ipv4.tcp_keepalive_time" = 120;
|
|
|
|
```
|
|
|
|
|
|
|
|
sets the kernel's TCP keepalive time to 120 seconds. To see the
|
|
|
|
available parameters, run `sysctl -a`.
|
|
|
|
|
2022-12-20 16:49:27 +01:00
|
|
|
## Building a custom kernel {#sec-linux-config-customizing}
|
2021-07-03 13:40:22 +02:00
|
|
|
|
2023-10-24 04:37:04 +02:00
|
|
|
Please refer to the Nixpkgs manual for the various ways of [building a custom kernel](https://nixos.org/nixpkgs/manual#sec-linux-kernel).
|
2021-07-03 13:40:22 +02:00
|
|
|
|
2022-12-20 16:49:27 +01:00
|
|
|
To use your custom kernel package in your NixOS configuration, set
|
|
|
|
|
|
|
|
```nix
|
|
|
|
boot.kernelPackages = pkgs.linuxPackagesFor yourCustomKernel;
|
2021-07-03 13:40:22 +02:00
|
|
|
```
|
|
|
|
|
2024-01-15 18:17:48 +01:00
|
|
|
## Rust {#sec-linux-rust}
|
2023-11-30 17:03:09 +01:00
|
|
|
|
|
|
|
The Linux kernel does not have Rust language support enabled by
|
|
|
|
default. For kernel versions 6.7 or newer, experimental Rust support
|
|
|
|
can be enabled. In a NixOS configuration, set:
|
|
|
|
|
|
|
|
```nix
|
|
|
|
boot.kernelPatches = [
|
|
|
|
{
|
|
|
|
name = "Rust Support";
|
|
|
|
patch = null;
|
|
|
|
features = {
|
|
|
|
rust = true;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
```
|
|
|
|
|
2021-07-03 13:40:22 +02:00
|
|
|
## Developing kernel modules {#sec-linux-config-developing-modules}
|
|
|
|
|
2023-10-24 04:37:04 +02:00
|
|
|
This section was moved to the [Nixpkgs manual](https://nixos.org/nixpkgs/manual#sec-linux-kernel-developing-modules).
|
2022-12-06 13:47:40 +01:00
|
|
|
|
|
|
|
## ZFS {#sec-linux-zfs}
|
|
|
|
|
|
|
|
It's a common issue that the latest stable version of ZFS doesn't support the latest
|
2022-12-09 11:34:05 +01:00
|
|
|
available Linux kernel. It is recommended to use the latest available LTS that's compatible
|
|
|
|
with ZFS. Usually this is the default kernel provided by nixpkgs (i.e. `pkgs.linuxPackages`).
|
|
|
|
|
|
|
|
Alternatively, it's possible to pin the system to the latest available kernel
|
2023-10-24 04:37:04 +02:00
|
|
|
version _that is supported by ZFS_ like this:
|
2022-12-06 13:47:40 +01:00
|
|
|
|
|
|
|
```nix
|
|
|
|
{
|
|
|
|
boot.kernelPackages = pkgs.zfs.latestCompatibleLinuxPackages;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Please note that the version this attribute points to isn't monotonic because the latest kernel
|
|
|
|
version only refers to kernel versions supported by the Linux developers. In other words,
|
|
|
|
the latest kernel version that ZFS is compatible with may decrease over time.
|
|
|
|
|
|
|
|
An example: the latest version ZFS is compatible with is 5.19 which is a non-longterm version. When 5.19
|
|
|
|
is out of maintenance, the latest supported kernel version is 5.15 because it's longterm and the versions
|
|
|
|
5.16, 5.17 and 5.18 are already out of maintenance because they're non-longterm.
|