feat: created integration of all hypr ecosystem components

This commit is contained in:
Zhongheng Liu 2024-08-09 17:06:39 +08:00
commit 7af26d3e3f
7 changed files with 92 additions and 19 deletions

View file

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