small changes

This commit is contained in:
Daniel Bulant 2025-09-08 11:31:45 +02:00
parent 7febca0786
commit 05c242c72a
No known key found for this signature in database
2 changed files with 8 additions and 5 deletions

View file

@ -84,7 +84,7 @@ exec-once=udev-block-notify
#exec-once=~/.config/hypr/scripts/sleep.sh #exec-once=~/.config/hypr/scripts/sleep.sh
exec-once=echo us > /tmp/kb_layout exec-once=echo us > /tmp/kb_layout
#exec-once=hyprctl setcursor Sweet 30 #exec-once=hyprctl setcursor Sweet 30
exec-once=sleep 10;aw-qt& sleep 2; awatcher #exec-once=sleep 10;aw-qt& sleep 2; awatcher
exec-once = nm-applet --indicator # systray app for Network/Wifi exec-once = nm-applet --indicator # systray app for Network/Wifi
exec-once=kdeconnect-indicator exec-once=kdeconnect-indicator
exec-once = hyprpm reload -n exec-once = hyprpm reload -n

View file

@ -11,9 +11,9 @@
config = lib.mkIf config.nyx.low-power.enable { config = lib.mkIf config.nyx.low-power.enable {
boot = { boot = {
kernelParams = [ kernelParams = [
"pcie_aspm.policy=powersupersave" # "pcie_aspm.policy=powersupersave"
"amd_pstate=passive" # "amd_pstate=passive"
"mitigations=auto" # "mitigations=auto"
]; ];
extraModprobeConfig = '' extraModprobeConfig = ''
@ -39,10 +39,11 @@
settings = { settings = {
battery = { battery = {
governor = "powersave"; governor = "powersave";
energy_performance_preference = "power";
turbo = "never"; turbo = "never";
}; };
charger = { charger = {
governor = "powersave"; # governor = "powersave";
turbo = "auto"; turbo = "auto";
}; };
}; };
@ -71,6 +72,8 @@
SATA_LINKPWR_ON_BAT = "min_power"; SATA_LINKPWR_ON_BAT = "min_power";
SOUND_POWER_SAVE_ON_AC = "1"; SOUND_POWER_SAVE_ON_AC = "1";
SOUND_POWER_SAVE_ON_BAT = "1"; SOUND_POWER_SAVE_ON_BAT = "1";
# PLATFORM_PROFILE_ON_AC = "performance";
# PLATFORM_PROFILE_ON_BAT = "balanced";
PLATFORM_PROFILE_ON_AC = "balanced"; PLATFORM_PROFILE_ON_AC = "balanced";
PLATFORM_PROFILE_ON_BAT = "low-power"; PLATFORM_PROFILE_ON_BAT = "low-power";
}; };