From 6f0c1e447ae2d360b9c9c1e92b71ba8c4b67b2cd Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Sun, 22 Dec 2024 14:52:37 +0100 Subject: [PATCH] feat(host-morty): allow CPU turbo mode on AC --- hosts/morty/nixos-config.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/morty/nixos-config.nix b/hosts/morty/nixos-config.nix index ce1b727..e824f72 100644 --- a/hosts/morty/nixos-config.nix +++ b/hosts/morty/nixos-config.nix @@ -1,5 +1,8 @@ { ... }: { config.modules.desktop.sway.enable = true; config.modules.gaming.steam.enable = true; - config.modules.hardware.laptop.enable = true; + config.modules.hardware.laptop = { + enable = true; + turbo_ac = "auto"; + }; }