nixos/home/hyprland/hyprpaper.nix
2024-06-08 23:20:39 +02:00

20 lines
363 B
Nix

{ conf, ... }:
{
home.file.wallpaper = {
target = ".config/hypr/${conf.wallpaper}";
source = ../wallpapers/${conf.wallpaper};
};
home.file.hyprpaper = let
file = home.file.wallpaper.target;
in {
target = ".config/hypr/hyprpaper.conf";
text = ''
preload = ${file}
wallpaper = ,${file}
splash = false
'';
};
}