feat: variable-based path interpolated hyprpaper config UNTESTED

This commit is contained in:
Zhongheng Liu 2024-08-09 16:15:06 +08:00
commit 362d2098bf
4 changed files with 38 additions and 7 deletions

View file

@ -0,0 +1,12 @@
{pkgs, config, ...}:
{
services.hyprpaper = {
enable = true;
settings = {
ipc = "on";
splash = false;
preload = [ config.myWallPaperPathString ];
wallpapaer = ",${config.myWallPaperPathString}";
};
};
}