vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / system / boot / loader / generations-dir / generations-dir.nix
blob397326899d8d61653b825fdba987fa92543e8642
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
7   generationsDirBuilder = pkgs.substituteAll {
8     src = ./generations-dir-builder.sh;
9     isExecutable = true;
10     inherit (pkgs) bash;
11     path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
12     inherit (config.boot.loader.generationsDir) copyKernels;
13   };
18   options = {
20     boot.loader.generationsDir = {
22       enable = mkOption {
23         default = false;
24         type = types.bool;
25         description = ''
26           Whether to create symlinks to the system generations under
27           `/boot`.  When enabled,
28           `/boot/default/kernel`,
29           `/boot/default/initrd`, etc., are updated to
30           point to the current generation's kernel image, initial RAM
31           disk, and other bootstrap files.
33           This optional is not necessary with boot loaders such as GNU GRUB
34           for which the menu is updated to point to the latest bootstrap
35           files.  However, it is needed for U-Boot on platforms where the
36           boot command line is stored in flash memory rather than in a
37           menu file.
38         '';
39       };
41       copyKernels = mkOption {
42         default = false;
43         type = types.bool;
44         description = ''
45           Whether to copy the necessary boot files into /boot, so
46           /nix/store is not needed by the boot loader.
47         '';
48       };
50     };
52   };
55   config = mkIf config.boot.loader.generationsDir.enable {
57     system.build.installBootLoader = generationsDirBuilder;
58     system.boot.loader.id = "generationsDir";
59     system.boot.loader.kernelFile = pkgs.stdenv.hostPlatform.linux-kernel.target;
61   };