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

21 lines
323 B
Nix
Raw Normal View History

2024-03-09 17:18:36 +01:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
hyprpaper
];
2024-03-14 21:36:28 +01:00
# https://wallhaven.cc/w/4veopp
2024-03-09 17:18:36 +01:00
home.file.".config/hypr/hyprpaper.conf" = {
enable = true;
executable = false;
text =''
preload = ~/Pictures/wallpaper.png
2024-03-14 21:36:28 +01:00
wallpaper = ,~/Pictures/wallpaper.png
2024-03-09 17:18:36 +01:00
ipc = off
'';
};
}