diff --git a/hosts/laptop/default.nix b/hosts/laptop/default.nix index cdaab5c..5aa9f69 100644 --- a/hosts/laptop/default.nix +++ b/hosts/laptop/default.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, config, ... }: { imports = [ ./hardware-configuration.nix @@ -33,8 +33,8 @@ enable = true; settings = { battery = { - governor = "ondemand"; - turbo = "never"; + governor = "performance"; + turbo = "auto"; }; charger = { governor = "performance"; @@ -53,4 +53,4 @@ ] ++ [pkgs.cpupower-gui]; }; -} \ No newline at end of file +}