Enable more power saving on 480
This commit is contained in:
parent
fa02ca0e5e
commit
e319f6fc20
2 changed files with 7 additions and 1 deletions
|
@ -5,6 +5,11 @@
|
||||||
networking.hostName = "foureighty";
|
networking.hostName = "foureighty";
|
||||||
boot = {
|
boot = {
|
||||||
initrd.kernelModules = [ "i915" ];
|
initrd.kernelModules = [ "i915" ];
|
||||||
|
kernelParams = [
|
||||||
|
"i915.enable_fbc=1"
|
||||||
|
"i915.enable_psr=2"
|
||||||
|
"i915.enable_rc6=7"
|
||||||
|
];
|
||||||
initrd.luks.devices = [
|
initrd.luks.devices = [
|
||||||
{
|
{
|
||||||
name = "root";
|
name = "root";
|
||||||
|
|
|
@ -85,10 +85,11 @@ in
|
||||||
|
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
hardware.enableRedistributableFirmware = true;
|
||||||
|
hardware.cpu.intel.updateMicrocode = true;
|
||||||
hardware.pulseaudio.enable = true;
|
hardware.pulseaudio.enable = true;
|
||||||
hardware.u2f.enable = true;
|
hardware.u2f.enable = true;
|
||||||
hardware.brightnessctl.enable = true;
|
hardware.brightnessctl.enable = true;
|
||||||
hardware.cpu.intel.updateMicrocode = true;
|
|
||||||
hardware.sane.enable = true;
|
hardware.sane.enable = true;
|
||||||
|
|
||||||
nix.gc.automatic = true;
|
nix.gc.automatic = true;
|
||||||
|
|
Loading…
Reference in a new issue