Fix broken wallpaper

This commit is contained in:
alejandro-angulo 2026-02-10 20:21:09 -08:00
parent e70240a85c
commit 1d5ea4d229

View file

@ -156,7 +156,7 @@ in
"systemctl --user import-environment DISPLAY WAYLAND_DISPLAY XDG_CURRENT_DESKTOP" "systemctl --user import-environment DISPLAY WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
"${pkgs.swaynotificationcenter}/bin/swaync" "${pkgs.swaynotificationcenter}/bin/swaync"
"${pkgs.waybar}/bin/waybar" "${pkgs.waybar}/bin/waybar"
"hyprpaper" "${pkgs.hyprpaper}/bin/hyprpaper"
]; ];
# Keybindings # Keybindings
@ -243,16 +243,13 @@ in
services.hyprpaper = { services.hyprpaper = {
enable = true; enable = true;
settings = { settings = {
ipc = "on"; ipc = true;
splash = false; splash = false;
splash_offset = 2;
preload = [
"${config.xdg.dataHome}/${cfg.wallpaperPath}"
];
wallpaper = [ wallpaper = [
",${config.xdg.dataHome}/${cfg.wallpaperPath}" {
path = "${config.xdg.dataHome}/${cfg.wallpaperPath}";
monitor = "";
}
]; ];
}; };
}; };