nix/modules/home/desktop/hyprland/hyprpaper.nix

21 lines
381 B
Nix
Raw Normal View History

2024-03-09 17:18:36 +01:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
hyprpaper
];
home.file.".config/hypr/hyprpaper.conf" = {
enable = true;
executable = false;
text =''
preload = ~/Pictures/wallpaper.png
preload = ~/Pictures/wallpaper-1.png
preload = ~/Pictures/wallpaper-2.png
wallpaper = eDP-1,~/Pictures/wallpaper-2.png
ipc = off
'';
};
}