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; };