feat: Change wallpapers
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled

This commit is contained in:
2026-02-06 12:46:33 +05:30
parent 618e5593e7
commit 91d6863d60
2 changed files with 28 additions and 28 deletions

View File

@@ -7,8 +7,8 @@
services.hyprpaper = let
wallpapers = import ../../utils/wallhaven.nix {inherit pkgs;};
nextcloudWallpapers = name: config.home.homeDirectory + "/Nextcloud/Wallpapers/" + name;
silksongFleas = nextcloudWallpapers "silksong-fleas.jpg";
silksongShadeLord = nextcloudWallpapers "silksong-shadelord.jpg";
# silksongFleas = nextcloudWallpapers "silksong-fleas.jpg";
bocchiVertical = nextcloudWallpapers "bocchi-vertical.jpg";
in {
enable = device.is "ryu";
settings = {
@@ -16,7 +16,7 @@
wallpaper = [
{
monitor = device.monitors.primary;
path = silksongShadeLord;
path = wallpapers.skull;
fit_mode = "cover";
}
{
@@ -26,7 +26,7 @@
}
{
monitor = device.monitors.tertiary;
path = silksongFleas;
path = bocchiVertical;
fit_mode = "cover";
}
];