74 current 2024-03-01 02:33:17 24.05.20240228.9099616 6.6.18 *

This commit is contained in:
zackartz 2024-03-01 02:33:22 -05:00
parent 26494954f2
commit fae67b5152
3 changed files with 14 additions and 8 deletions

View file

@ -5,6 +5,7 @@
config, config,
pkgs, pkgs,
inputs, inputs,
lib,
... ...
}: { }: {
imports = [ imports = [
@ -84,6 +85,10 @@
# Load nvidia driver for Xorg and Wayland # Load nvidia driver for Xorg and Wayland
services.xserver.videoDrivers = ["nvidia"]; # or "nvidiaLegacy470 etc. services.xserver.videoDrivers = ["nvidia"]; # or "nvidiaLegacy470 etc.
environment.variables = {
WLR_RENDERER_ALLOW_SOFTWARE = "1";
};
nix.settings.experimental-features = ["nix-command" "flakes"]; nix.settings.experimental-features = ["nix-command" "flakes"];
hardware.nvidia = { hardware.nvidia = {

View file

@ -15,6 +15,7 @@
../rice/gtk.nix ../rice/gtk.nix
../rice/kitty.nix ../rice/kitty.nix
../rice/waybar ../rice/waybar
../rice/dunst.nix
../shell ../shell
]; ];

View file

@ -21,8 +21,8 @@ in {
}; };
settings = with theme.colors; { settings = with theme.colors; {
global = { global = {
frame_color = "#${pink}95"; frame_color = "#${rose}95";
separator_color = x pink; separator_color = x rose;
width = 220; width = 220;
height = 280; height = 280;
offset = "0x15"; offset = "0x15";
@ -44,23 +44,23 @@ in {
transparency = 10; transparency = 10;
progress_bar = true; progress_bar = true;
progress_bar_frame_width = 0; progress_bar_frame_width = 0;
highlight = x pink; highlight = x rose;
}; };
fullscreen_delay_everything.fullscreen = "delay"; fullscreen_delay_everything.fullscreen = "delay";
urgency_low = { urgency_low = {
background = "#${base}83"; background = "#${subtle}83";
foreground = x text; foreground = x muted;
timeout = 5; timeout = 5;
}; };
urgency_normal = { urgency_normal = {
background = "#${base}83"; background = "#${subtle}83";
foreground = "#c6d0f5"; foreground = "#c6d0f5";
timeout = 6; timeout = 6;
}; };
urgency_critical = { urgency_critical = {
background = "#${base}83"; background = "#${subtle}83";
foreground = x text; foreground = x text;
frame_color = "#${red}80"; frame_color = "#${pine}80";
timeout = 0; timeout = 0;
}; };
}; };