From 7ff7ac016de99bdf09efaebbb643dc4e349f6b98 Mon Sep 17 00:00:00 2001 From: Zephrynis Date: Sun, 5 Oct 2025 03:27:48 +0100 Subject: [PATCH] Add UEFI bootloader configuration for laptop --- hosts/laptop/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 3a4566b..a979c0a 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -8,6 +8,11 @@ networking.hostName = "laptop"; + # UEFI bootloader configuration (systemd-boot) + boot.loader.systemd-boot.enable = true; + # Allow writing EFI variables (required to install the loader) + boot.loader.efi.canTouchEfiVariables = true; + # Host-specific tweaks powerManagement.powertop.enable = true; # example: laptop power savings services.tlp.enable = true;