Files
dotfiles/home/services/hyprpaper.nix
servius 8cdb41674c
All checks were successful
Flake checker / Build Nix targets (push) Successful in 22m43s
feat: Update wallpapers
2026-03-05 18:04:01 +05:30

39 lines
966 B
Nix

{
pkgs,
device,
config,
...
}: {
services.hyprpaper = let
wallpapers = import ../../utils/wallhaven.nix {inherit pkgs;};
nextcloudWallpapers = name: config.home.homeDirectory + "/Nextcloud/Wallpapers/" + name;
# silksongFleas = nextcloudWallpapers "silksong-fleas.jpg";
# The artist https://www.bilibili.com/video/BV1s44y1S7MM/
bocchiVertical = nextcloudWallpapers "bocchi-guitar.jpg";
frieren = nextcloudWallpapers "frieren.png";
in {
enable = device.is "ryu";
settings = {
splash = false;
wallpaper = [
{
monitor = device.monitors.primary;
path = wallpapers.moon;
fit_mode = "cover";
}
{
monitor = device.monitors.secondary;
path = frieren;
fit_mode = "cover";
}
{
monitor = device.monitors.tertiary;
path = bocchiVertical;
fit_mode = "cover";
}
];
};
};
}