Files
nix-config/modules/home/desktop/hyprland/services/hyprpaper/default.nix
mjallen18 3d213c8769 nixfmt
2025-07-24 11:06:08 -05:00

24 lines
366 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;
};
};
};
}