Update default.nix

This commit is contained in:
Milo Oien-Rochat 2024-01-31 07:53:27 -06:00 committed by Mic92
parent e52f0b18c4
commit 7fdd32c870
1 changed files with 4 additions and 4 deletions

View File

@ -16,8 +16,8 @@
# Allows for updating firmware via `fwupdmgr`.
services.fwupd.enable = lib.mkDefault true;
# Enables ACPI platform profiles, maybe messed up vscode?
#boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
# kernelModules = [ "hp-wmi" ];
#};
# Enables ACPI platform profile?
boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
kernelModules = [ "hp-wmi" ];
};
}