Files
nix-config/modules/home/desktop/hyprland/services/hyprpaper/default.nix
2025-07-23 11:57:44 -05:00

18 lines
357 B
Nix

{ config, lib, namespace, ... }:
let
cfg = config.${namespace}.desktop.hyprland;
in
{
imports = [ ../../options.nix ];
config = lib.mkIf cfg.enable {
services.hyprpaper = {
enable = true;
settings = {
preload = [ "/run/wallpaper.jpg" ];
wallpaper = ",/run/wallpaper.jpg";
splash = false;
};
};
};
}