74 current 2024-03-01 02:33:17 24.05.20240228.9099616 6.6.18 *
This commit is contained in:
parent
26494954f2
commit
fae67b5152
3 changed files with 14 additions and 8 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
../rice/gtk.nix
|
||||
../rice/kitty.nix
|
||||
../rice/waybar
|
||||
../rice/dunst.nix
|
||||
../shell
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue