From 72c811c67e86058d13103e1d60148cf4f1c746fa Mon Sep 17 00:00:00 2001 From: Eclypsed Date: Sat, 22 Nov 2025 18:46:36 -0500 Subject: [PATCH] Fixed wlogout icons --- modules/home/wlogout.nix | 6 +++++- modules/system/packages.nix | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/home/wlogout.nix b/modules/home/wlogout.nix index fde00aa..b01f959 100644 --- a/modules/home/wlogout.nix +++ b/modules/home/wlogout.nix @@ -44,6 +44,10 @@ keybind = "r"; } ]; + # * IMPORTANT + # * The for some reason the SVG icons will not be rendered when wlogout is called + # * from a hyprland keybind unless librsvg is installed. + # * See packages.nix (programs.gdk-pixbuf.modulePackages = [ pkgs.librsvg ];) style = with config.lib.stylix.colors.withHashtag; '' * { font-family: "Rubik Light"; @@ -52,7 +56,7 @@ } window { - background: url("${config.xdg.userDirs.extraConfig.XDG_WALLPAPERS_DIR}/lanterns_of_twilight.png"); + background: url("${config.xdg.userDirs.extraConfig.XDG_WALLPAPERS_DIR}/sunset_bay.jpg"); background-size: cover; } diff --git a/modules/system/packages.nix b/modules/system/packages.nix index a2c98fd..6812530 100644 --- a/modules/system/packages.nix +++ b/modules/system/packages.nix @@ -17,6 +17,7 @@ # enable = true; # enableSSHSupport = true; # }; + gdk-pixbuf.modulePackages = [ pkgs.librsvg ]; nix-ld.enable = true; zsh.enable = true; };