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;