Switched to latest Linux Kernel(15) hoping to fix 550+ Nvidia

This commit is contained in:
KaitoTLex 2025-01-17 15:49:28 -08:00
parent 15c116214c
commit a114dc02bd
2 changed files with 14 additions and 14 deletions

View file

@ -17,7 +17,7 @@
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
virtualisation.waydroid.enable = true; virtualisation.waydroid.enable = true;
boot.kernelPackages = pkgs.linuxPackages_xanmod; boot.kernelPackages = pkgs.linuxPackages_5_15;
#systemdefaults #systemdefaults
networking.hostName = "kuroko"; # Define your hostname. networking.hostName = "kuroko"; # Define your hostname.
services.ratbagd.enable = true; services.ratbagd.enable = true;
@ -37,7 +37,7 @@
# Enable this if you have graphical corruption issues or application crashes after waking # Enable this if you have graphical corruption issues or application crashes after waking
# up from sleep. This fixes it by saving the entire VRAM memory to /tmp/ instead # up from sleep. This fixes it by saving the entire VRAM memory to /tmp/ instead
# of just the bare essentials. # of just the bare essentials.
powerManagement.enable = lib.mkForce true; powerManagement.enable = false;
# Fine-grained power management. Turns off GPU when not in use. # Fine-grained power management. Turns off GPU when not in use.
# Experimental and only works on modern Nvidia GPUs (Turing or newer). # Experimental and only works on modern Nvidia GPUs (Turing or newer).

View file

@ -1,14 +1,14 @@
@import "./rose-pine-dawn.css"; @import "./nord.css";
window#waybar { window#waybar {
font-family: "CaskaydiaCove Nerd Font"; font-family: "CaskaydiaCove Nerd Font";
background-color: @base; background-color: @bg;
font-size: 0.8rem; font-size: 0.8rem;
border-radius: 0.5rem; border-radius: 0.5rem;
} }
.modules-left { .modules-left {
opacity: 1; opacity: 1;
background: linear-gradient(45deg, @muted, @subtle); background-color: @nord_bg_blue;
border-radius: 0.5rem; border-radius: 0.5rem;
padding: 2px; padding: 2px;
} }
@ -19,7 +19,7 @@ window#waybar {
.modules-right { .modules-right {
opacity: 1; opacity: 1;
background-color: @subtle; background-color: @nord_bg_blue;
border-radius: 0.5rem; border-radius: 0.5rem;
padding: 2px 2px 2px 10px padding: 2px 2px 2px 10px
} }
@ -29,7 +29,7 @@ window#waybar {
} */ } */
#workspaces { #workspaces {
background-color: @rose; background-color: @nord_bg_blue;
border-radius: 0.5rem; border-radius: 0.5rem;
padding: 0 2px; padding: 0 2px;
} }
@ -40,7 +40,7 @@ window#waybar {
} }
#window { #window {
background-color: @iris; background-color: @workspacefocused;
border-radius: 0.5rem; border-radius: 0.5rem;
padding: 2px 5px; padding: 2px 5px;
} }
@ -51,25 +51,25 @@ window#waybar {
} }
#battery { #battery {
color: @foam; color: @battery;
} }
#memory { #memory {
color: @iris; color: @memory;
} }
#disk { #disk {
color: @gold; color: @date;
} }
#cpu { #cpu {
color: @rose; color: @cpu;
} }
#temperature { #temperature {
color: @foam; color: @temp;
} }
#network { #network {
color: @rose; color: @network;
} }