From ca010c032d2d2546a7681041b27893ffcfc1345e Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 21 Feb 2024 02:38:57 +0300 Subject: [PATCH] Bootloader : Add notes. --- .config/linux/system/module/common/Bootloader.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/linux/system/module/common/Bootloader.nix b/.config/linux/system/module/common/Bootloader.nix index 8b7b7ba..9edce23 100644 --- a/.config/linux/system/module/common/Bootloader.nix +++ b/.config/linux/system/module/common/Bootloader.nix @@ -1,5 +1,8 @@ { lib, ... }: { + # Enable non-free firmware. hardware.enableRedistributableFirmware = lib.mkDefault true; + + # Configure bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; boot.initrd.kernelModules = [ "dm-snapshot" ];