update: small fixes after version bump

This commit is contained in:
Timothy DeHerrera 2020-12-05 18:13:13 -07:00
parent ece0f8f8a2
commit c403cd1c32
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122
2 changed files with 6 additions and 6 deletions

View file

@ -16,7 +16,7 @@
services.picom = {
enable = true;
inactiveOpacity = "0.8";
inactiveOpacity = 0.8;
settings = {
"unredir-if-possible" = true;
"focus-exclude" = "name = 'slock'";

View file

@ -38,11 +38,11 @@
# power management features
services.tlp.enable = true;
services.tlp.extraConfig = ''
CPU_SCALING_GOVERNOR_ON_AC=performance
CPU_SCALING_GOVERNOR_ON_BAT=powersave
CPU_HWP_ON_AC=performance
'';
services.tlp.settings = {
CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
CPU_HWP_ON_AC = "performance";
};
services.logind.lidSwitch = "suspend";
nixpkgs.overlays =