From fae67b5152e3ad0dd92de540296df4197de4e3b0 Mon Sep 17 00:00:00 2001 From: zackartz Date: Fri, 1 Mar 2024 02:33:22 -0500 Subject: [PATCH] 74 current 2024-03-01 02:33:17 24.05.20240228.9099616 6.6.18 * --- hosts/earth/configuration.nix | 5 +++++ modules/home-manager/default.nix | 1 + modules/rice/dunst.nix | 16 ++++++++-------- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/hosts/earth/configuration.nix b/hosts/earth/configuration.nix index 38bb680..9281d5a 100644 --- a/hosts/earth/configuration.nix +++ b/hosts/earth/configuration.nix @@ -5,6 +5,7 @@ config, pkgs, inputs, + lib, ... }: { imports = [ @@ -84,6 +85,10 @@ # Load nvidia driver for Xorg and Wayland services.xserver.videoDrivers = ["nvidia"]; # or "nvidiaLegacy470 etc. + environment.variables = { + WLR_RENDERER_ALLOW_SOFTWARE = "1"; + }; + nix.settings.experimental-features = ["nix-command" "flakes"]; hardware.nvidia = { diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix index cbca9df..efa51ce 100644 --- a/modules/home-manager/default.nix +++ b/modules/home-manager/default.nix @@ -15,6 +15,7 @@ ../rice/gtk.nix ../rice/kitty.nix ../rice/waybar + ../rice/dunst.nix ../shell ]; diff --git a/modules/rice/dunst.nix b/modules/rice/dunst.nix index 9500f58..3f25b13 100644 --- a/modules/rice/dunst.nix +++ b/modules/rice/dunst.nix @@ -21,8 +21,8 @@ in { }; settings = with theme.colors; { global = { - frame_color = "#${pink}95"; - separator_color = x pink; + frame_color = "#${rose}95"; + separator_color = x rose; width = 220; height = 280; offset = "0x15"; @@ -44,23 +44,23 @@ in { transparency = 10; progress_bar = true; progress_bar_frame_width = 0; - highlight = x pink; + highlight = x rose; }; fullscreen_delay_everything.fullscreen = "delay"; urgency_low = { - background = "#${base}83"; - foreground = x text; + background = "#${subtle}83"; + foreground = x muted; timeout = 5; }; urgency_normal = { - background = "#${base}83"; + background = "#${subtle}83"; foreground = "#c6d0f5"; timeout = 6; }; urgency_critical = { - background = "#${base}83"; + background = "#${subtle}83"; foreground = x text; - frame_color = "#${red}80"; + frame_color = "#${pine}80"; timeout = 0; }; };