2014-04-14 15:26:48 +01:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
2009-11-08 09:01:53 +00:00
|
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
|
with lib;
|
2009-01-25 15:48:48 +00:00
|
|
|
|
|
2012-10-11 22:58:46 +01:00
|
|
|
|
let
|
|
|
|
|
|
2016-04-30 05:19:57 +01:00
|
|
|
|
inherit (config.boot) kernelPatches;
|
2019-01-12 00:35:18 +00:00
|
|
|
|
inherit (config.boot.kernel) features randstructSeed;
|
2016-04-30 05:19:57 +01:00
|
|
|
|
inherit (config.boot.kernelPackages) kernel;
|
2012-10-11 22:58:46 +01:00
|
|
|
|
|
|
|
|
|
kernelModulesConf = pkgs.writeText "nixos.conf"
|
|
|
|
|
''
|
|
|
|
|
${concatStringsSep "\n" config.boot.kernelModules}
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
in
|
2009-12-15 14:10:06 +00:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
###### interface
|
2009-01-25 15:48:48 +00:00
|
|
|
|
|
|
|
|
|
options = {
|
2011-09-07 21:36:13 +01:00
|
|
|
|
|
2018-02-09 22:07:06 +00:00
|
|
|
|
boot.kernel.features = mkOption {
|
|
|
|
|
default = {};
|
|
|
|
|
example = literalExample "{ debug = true; }";
|
2018-02-14 01:16:36 +00:00
|
|
|
|
internal = true;
|
2018-02-09 22:07:06 +00:00
|
|
|
|
description = ''
|
|
|
|
|
This option allows to enable or disable certain kernel features.
|
2018-02-14 01:16:36 +00:00
|
|
|
|
It's not API, because it's about kernel feature sets, that
|
|
|
|
|
make sense for specific use cases. Mostly along with programs,
|
|
|
|
|
which would have separate nixos options.
|
|
|
|
|
`grep features pkgs/os-specific/linux/kernel/common-config.nix`
|
2018-02-09 22:07:06 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-12-15 14:10:06 +00:00
|
|
|
|
boot.kernelPackages = mkOption {
|
2010-03-16 12:10:06 +00:00
|
|
|
|
default = pkgs.linuxPackages;
|
2019-03-24 13:04:15 +00:00
|
|
|
|
type = types.unspecified // { merge = mergeEqualOption; };
|
2016-04-30 05:19:57 +01:00
|
|
|
|
apply = kernelPackages: kernelPackages.extend (self: super: {
|
|
|
|
|
kernel = super.kernel.override {
|
2019-01-12 00:35:18 +00:00
|
|
|
|
inherit randstructSeed;
|
2016-04-30 05:19:57 +01:00
|
|
|
|
kernelPatches = super.kernel.kernelPatches ++ kernelPatches;
|
2018-02-09 22:07:06 +00:00
|
|
|
|
features = lib.recursiveUpdate super.kernel.features features;
|
2016-04-30 05:19:57 +01:00
|
|
|
|
};
|
|
|
|
|
});
|
2010-05-28 12:21:40 +01:00
|
|
|
|
# We don't want to evaluate all of linuxPackages for the manual
|
|
|
|
|
# - some of it might not even evaluate correctly.
|
|
|
|
|
defaultText = "pkgs.linuxPackages";
|
2013-10-30 16:37:45 +00:00
|
|
|
|
example = literalExample "pkgs.linuxPackages_2_6_25";
|
2009-12-15 14:10:06 +00:00
|
|
|
|
description = ''
|
|
|
|
|
This option allows you to override the Linux kernel used by
|
|
|
|
|
NixOS. Since things like external kernel module packages are
|
|
|
|
|
tied to the kernel you're using, it also overrides those.
|
|
|
|
|
This option is a function that takes Nixpkgs as an argument
|
|
|
|
|
(as a convenience), and returns an attribute set containing at
|
|
|
|
|
the very least an attribute <varname>kernel</varname>.
|
|
|
|
|
Additional attributes may be needed depending on your
|
|
|
|
|
configuration. For instance, if you use the NVIDIA X driver,
|
|
|
|
|
then it also needs to contain an attribute
|
|
|
|
|
<varname>nvidia_x11</varname>.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2016-04-30 05:19:57 +01:00
|
|
|
|
boot.kernelPatches = mkOption {
|
|
|
|
|
type = types.listOf types.attrs;
|
|
|
|
|
default = [];
|
|
|
|
|
example = literalExample "[ pkgs.kernelPatches.ubuntu_fan_4_4 ]";
|
|
|
|
|
description = "A list of additional patches to apply to the kernel.";
|
|
|
|
|
};
|
|
|
|
|
|
2019-01-12 00:35:18 +00:00
|
|
|
|
boot.kernel.randstructSeed = mkOption {
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = "";
|
|
|
|
|
example = "my secret seed";
|
|
|
|
|
description = ''
|
|
|
|
|
Provides a custom seed for the <varname>RANDSTRUCT</varname> security
|
|
|
|
|
option of the Linux kernel. Note that <varname>RANDSTRUCT</varname> is
|
|
|
|
|
only enabled in NixOS hardened kernels. Using a custom seed requires
|
|
|
|
|
building the kernel and dependent packages locally, since this
|
|
|
|
|
customization happens at build time.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-12-15 14:10:06 +00:00
|
|
|
|
boot.kernelParams = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.listOf types.str;
|
2010-01-05 13:11:12 +00:00
|
|
|
|
default = [ ];
|
2013-10-30 16:37:45 +00:00
|
|
|
|
description = "Parameters added to the kernel command line.";
|
2009-12-15 14:10:06 +00:00
|
|
|
|
};
|
|
|
|
|
|
2013-07-23 19:43:11 +01:00
|
|
|
|
boot.consoleLogLevel = mkOption {
|
|
|
|
|
type = types.int;
|
|
|
|
|
default = 4;
|
|
|
|
|
description = ''
|
2018-04-17 02:30:31 +01:00
|
|
|
|
The kernel console <literal>loglevel</literal>. All Kernel Messages with a log level smaller
|
|
|
|
|
than this setting will be printed to the console.
|
2013-07-23 19:43:11 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2010-01-15 21:55:51 +00:00
|
|
|
|
boot.vesa = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.bool;
|
2013-09-26 16:33:52 +01:00
|
|
|
|
default = false;
|
2010-01-15 21:55:51 +00:00
|
|
|
|
description = ''
|
2019-12-24 21:05:16 +00:00
|
|
|
|
(Deprecated) This option, if set, activates the VESA 800x600 video
|
|
|
|
|
mode on boot and disables kernel modesetting. It is equivalent to
|
|
|
|
|
specifying <literal>[ "vga=0x317" "nomodeset" ]</literal> in the
|
|
|
|
|
<option>boot.kernelParams</option> option. This option is
|
|
|
|
|
deprecated as of 2020: Xorg now works better with modesetting, and
|
|
|
|
|
you might want a different VESA vga setting, anyway.
|
2010-01-15 21:55:51 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-12-15 14:10:06 +00:00
|
|
|
|
boot.extraModulePackages = mkOption {
|
2016-01-17 18:34:55 +00:00
|
|
|
|
type = types.listOf types.package;
|
2009-12-15 14:10:06 +00:00
|
|
|
|
default = [];
|
2019-09-17 07:37:56 +01:00
|
|
|
|
example = literalExample "[ config.boot.kernelPackages.nvidia_x11 ]";
|
2009-12-15 14:10:06 +00:00
|
|
|
|
description = "A list of additional packages supplying kernel modules.";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
boot.kernelModules = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.listOf types.str;
|
2009-12-15 14:10:06 +00:00
|
|
|
|
default = [];
|
|
|
|
|
description = ''
|
|
|
|
|
The set of kernel modules to be loaded in the second stage of
|
|
|
|
|
the boot process. Note that modules that are needed to
|
|
|
|
|
mount the root file system should be added to
|
2009-12-15 16:38:20 +00:00
|
|
|
|
<option>boot.initrd.availableKernelModules</option> or
|
2009-12-15 14:10:06 +00:00
|
|
|
|
<option>boot.initrd.kernelModules</option>.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-12-15 16:38:20 +00:00
|
|
|
|
boot.initrd.availableKernelModules = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.listOf types.str;
|
2009-12-15 16:38:20 +00:00
|
|
|
|
default = [];
|
|
|
|
|
example = [ "sata_nv" "ext3" ];
|
|
|
|
|
description = ''
|
|
|
|
|
The set of kernel modules in the initial ramdisk used during the
|
|
|
|
|
boot process. This set must include all modules necessary for
|
|
|
|
|
mounting the root device. That is, it should include modules
|
|
|
|
|
for the physical device (e.g., SCSI drivers) and for the file
|
|
|
|
|
system (e.g., ext3). The set specified here is automatically
|
|
|
|
|
closed under the module dependency relation, i.e., all
|
|
|
|
|
dependencies of the modules list here are included
|
|
|
|
|
automatically. The modules listed here are available in the
|
|
|
|
|
initrd, but are only loaded on demand (e.g., the ext3 module is
|
|
|
|
|
loaded automatically when an ext3 filesystem is mounted, and
|
|
|
|
|
modules for PCI devices are loaded when they match the PCI ID
|
|
|
|
|
of a device in your system). To force a module to be loaded,
|
|
|
|
|
include it in <option>boot.initrd.kernelModules</option>.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-07 21:36:13 +01:00
|
|
|
|
|
2009-12-15 14:10:06 +00:00
|
|
|
|
boot.initrd.kernelModules = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.listOf types.str;
|
2011-09-02 14:19:45 +01:00
|
|
|
|
default = [];
|
2009-12-15 16:38:20 +00:00
|
|
|
|
description = "List of modules that are always loaded by the initrd.";
|
|
|
|
|
};
|
|
|
|
|
|
2021-01-31 10:58:50 +00:00
|
|
|
|
boot.initrd.includeDefaultModules = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = true;
|
|
|
|
|
description = ''
|
|
|
|
|
This option, if set, adds a collection of default kernel modules
|
|
|
|
|
to <option>boot.initrd.availableKernelModules</option> and
|
|
|
|
|
<option>boot.initrd.kernelModules</option>.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-12-15 16:38:20 +00:00
|
|
|
|
system.modulesTree = mkOption {
|
2013-10-28 15:14:15 +00:00
|
|
|
|
type = types.listOf types.path;
|
2009-12-15 16:38:20 +00:00
|
|
|
|
internal = true;
|
|
|
|
|
default = [];
|
|
|
|
|
description = ''
|
|
|
|
|
Tree of kernel modules. This includes the kernel, plus modules
|
|
|
|
|
built outside of the kernel. Combine these into a single tree of
|
|
|
|
|
symlinks because modprobe only supports one directory.
|
|
|
|
|
'';
|
|
|
|
|
# Convert the list of path to only one path.
|
|
|
|
|
apply = pkgs.aggregateModules;
|
|
|
|
|
};
|
|
|
|
|
|
2012-08-02 02:50:43 +01:00
|
|
|
|
system.requiredKernelConfig = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
example = literalExample ''
|
|
|
|
|
with config.lib.kernelConfig; [
|
|
|
|
|
(isYes "MODULES")
|
|
|
|
|
(isEnabled "FB_CON_DECOR")
|
|
|
|
|
(isEnabled "BLK_DEV_INITRD")
|
|
|
|
|
]
|
|
|
|
|
'';
|
|
|
|
|
internal = true;
|
|
|
|
|
type = types.listOf types.attrs;
|
|
|
|
|
description = ''
|
|
|
|
|
This option allows modules to specify the kernel config options that
|
|
|
|
|
must be set (or unset) for the module to work. Please use the
|
|
|
|
|
lib.kernelConfig functions to build list elements.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-12-15 16:38:20 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
2020-02-14 13:11:33 +00:00
|
|
|
|
config = mkMerge
|
|
|
|
|
[ (mkIf config.boot.initrd.enable {
|
2021-01-13 14:22:41 +00:00
|
|
|
|
boot.initrd.availableKernelModules =
|
2021-01-31 10:58:50 +00:00
|
|
|
|
optionals config.boot.initrd.includeDefaultModules ([
|
|
|
|
|
# Note: most of these (especially the SATA/PATA modules)
|
2020-02-14 13:11:33 +00:00
|
|
|
|
# shouldn't be included by default since nixos-generate-config
|
|
|
|
|
# detects them, but I'm keeping them for now for backwards
|
|
|
|
|
# compatibility.
|
|
|
|
|
|
|
|
|
|
# Some SATA/PATA stuff.
|
2021-01-13 14:22:41 +00:00
|
|
|
|
"ahci"
|
2020-02-14 13:11:33 +00:00
|
|
|
|
"sata_nv"
|
|
|
|
|
"sata_via"
|
|
|
|
|
"sata_sis"
|
|
|
|
|
"sata_uli"
|
|
|
|
|
"ata_piix"
|
|
|
|
|
"pata_marvell"
|
|
|
|
|
|
|
|
|
|
# Standard SCSI stuff.
|
2021-01-13 14:22:41 +00:00
|
|
|
|
"sd_mod"
|
|
|
|
|
"sr_mod"
|
2020-02-14 13:11:33 +00:00
|
|
|
|
|
|
|
|
|
# SD cards and internal eMMC drives.
|
2021-01-13 14:22:41 +00:00
|
|
|
|
"mmc_block"
|
2020-02-14 13:11:33 +00:00
|
|
|
|
|
|
|
|
|
# Support USB keyboards, in case the boot fails and we only have
|
|
|
|
|
# a USB keyboard, or for LUKS passphrase prompt.
|
2021-01-13 14:22:41 +00:00
|
|
|
|
"uhci_hcd"
|
2020-02-14 13:11:33 +00:00
|
|
|
|
"ehci_hcd"
|
|
|
|
|
"ehci_pci"
|
|
|
|
|
"ohci_hcd"
|
|
|
|
|
"ohci_pci"
|
|
|
|
|
"xhci_hcd"
|
|
|
|
|
"xhci_pci"
|
|
|
|
|
"usbhid"
|
|
|
|
|
"hid_generic" "hid_lenovo" "hid_apple" "hid_roccat"
|
2020-08-29 21:28:05 +01:00
|
|
|
|
"hid_logitech_hidpp" "hid_logitech_dj" "hid_microsoft"
|
2020-02-14 13:11:33 +00:00
|
|
|
|
|
|
|
|
|
] ++ optionals (pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64) [
|
|
|
|
|
# Misc. x86 keyboard stuff.
|
|
|
|
|
"pcips2" "atkbd" "i8042"
|
|
|
|
|
|
|
|
|
|
# x86 RTC needed by the stage 2 init script.
|
|
|
|
|
"rtc_cmos"
|
2021-01-31 10:58:50 +00:00
|
|
|
|
]);
|
2020-02-14 13:11:33 +00:00
|
|
|
|
|
|
|
|
|
boot.initrd.kernelModules =
|
2021-01-31 10:58:50 +00:00
|
|
|
|
optionals config.boot.initrd.includeDefaultModules [
|
|
|
|
|
# For LVM.
|
2020-02-14 13:11:33 +00:00
|
|
|
|
"dm_mod"
|
|
|
|
|
];
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
(mkIf (!config.boot.isContainer) {
|
|
|
|
|
system.build = { inherit kernel; };
|
|
|
|
|
|
|
|
|
|
system.modulesTree = [ kernel ] ++ config.boot.extraModulePackages;
|
|
|
|
|
|
|
|
|
|
# Implement consoleLogLevel both in early boot and using sysctl
|
|
|
|
|
# (so you don't need to reboot to have changes take effect).
|
|
|
|
|
boot.kernelParams =
|
|
|
|
|
[ "loglevel=${toString config.boot.consoleLogLevel}" ] ++
|
|
|
|
|
optionals config.boot.vesa [ "vga=0x317" "nomodeset" ];
|
|
|
|
|
|
|
|
|
|
boot.kernel.sysctl."kernel.printk" = mkDefault config.boot.consoleLogLevel;
|
|
|
|
|
|
|
|
|
|
boot.kernelModules = [ "loop" "atkbd" ];
|
|
|
|
|
|
|
|
|
|
# The Linux kernel >= 2.6.27 provides firmware.
|
|
|
|
|
hardware.firmware = [ kernel ];
|
|
|
|
|
|
|
|
|
|
# Create /etc/modules-load.d/nixos.conf, which is read by
|
|
|
|
|
# systemd-modules-load.service to load required kernel modules.
|
|
|
|
|
environment.etc =
|
|
|
|
|
{ "modules-load.d/nixos.conf".source = kernelModulesConf;
|
2012-10-11 22:58:46 +01:00
|
|
|
|
};
|
2011-09-07 21:36:13 +01:00
|
|
|
|
|
2020-02-14 13:11:33 +00:00
|
|
|
|
systemd.services.systemd-modules-load =
|
|
|
|
|
{ wantedBy = [ "multi-user.target" ];
|
|
|
|
|
restartTriggers = [ kernelModulesConf ];
|
|
|
|
|
serviceConfig =
|
|
|
|
|
{ # Ignore failed module loads. Typically some of the
|
|
|
|
|
# modules in ‘boot.kernelModules’ are "nice to have but
|
|
|
|
|
# not required" (e.g. acpi-cpufreq), so we don't want to
|
|
|
|
|
# barf on those.
|
|
|
|
|
SuccessExitStatus = "0 1";
|
|
|
|
|
};
|
|
|
|
|
};
|
2012-08-02 02:50:43 +01:00
|
|
|
|
|
2020-02-14 13:11:33 +00:00
|
|
|
|
lib.kernelConfig = {
|
|
|
|
|
isYes = option: {
|
|
|
|
|
assertion = config: config.isYes option;
|
|
|
|
|
message = "CONFIG_${option} is not yes!";
|
|
|
|
|
configLine = "CONFIG_${option}=y";
|
|
|
|
|
};
|
2012-08-02 02:50:43 +01:00
|
|
|
|
|
2020-02-14 13:11:33 +00:00
|
|
|
|
isNo = option: {
|
|
|
|
|
assertion = config: config.isNo option;
|
|
|
|
|
message = "CONFIG_${option} is not no!";
|
|
|
|
|
configLine = "CONFIG_${option}=n";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
isModule = option: {
|
|
|
|
|
assertion = config: config.isModule option;
|
|
|
|
|
message = "CONFIG_${option} is not built as a module!";
|
|
|
|
|
configLine = "CONFIG_${option}=m";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
### Usually you will just want to use these two
|
|
|
|
|
# True if yes or module
|
|
|
|
|
isEnabled = option: {
|
|
|
|
|
assertion = config: config.isEnabled option;
|
|
|
|
|
message = "CONFIG_${option} is not enabled!";
|
|
|
|
|
configLine = "CONFIG_${option}=y";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# True if no or omitted
|
|
|
|
|
isDisabled = option: {
|
|
|
|
|
assertion = config: config.isDisabled option;
|
|
|
|
|
message = "CONFIG_${option} is not disabled!";
|
|
|
|
|
configLine = "CONFIG_${option}=n";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# The config options that all modules can depend upon
|
|
|
|
|
system.requiredKernelConfig = with config.lib.kernelConfig;
|
|
|
|
|
[
|
|
|
|
|
# !!! Should this really be needed?
|
|
|
|
|
(isYes "MODULES")
|
|
|
|
|
(isYes "BINFMT_ELF")
|
|
|
|
|
] ++ (optional (randstructSeed != "") (isYes "GCC_PLUGIN_RANDSTRUCT"));
|
|
|
|
|
|
|
|
|
|
# nixpkgs kernels are assumed to have all required features
|
|
|
|
|
assertions = if config.boot.kernelPackages.kernel ? features then [] else
|
|
|
|
|
let cfg = config.boot.kernelPackages.kernel.config; in map (attrs:
|
|
|
|
|
{ assertion = attrs.assertion cfg; inherit (attrs) message; }
|
|
|
|
|
) config.system.requiredKernelConfig;
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
];
|
2011-09-07 21:36:13 +01:00
|
|
|
|
|
2009-01-25 15:48:48 +00:00
|
|
|
|
}
|