nix-config/modules/home-manager/desktop/hyprland/hyprpaper.nix
2025-05-30 21:10:10 +02:00

15 lines
236 B
Nix

{ lib, config, ... }:
{
home-manager.users.willifan = {
services.hyprpaper = lib.mkIf config.desktop.hyprpaper.enable {
enable = true;
settings = {
splash = true;
ipc = "off";
};
};
};
}