12 lines
226 B
Nix
12 lines
226 B
Nix
{pkgs, config, ...}:
|
|
{
|
|
services.hyprpaper = {
|
|
enable = true;
|
|
settings = {
|
|
ipc = "on";
|
|
splash = false;
|
|
preload = [ config.myWallPaperPathString ];
|
|
wallpaper = [ ",${config.myWallPaperPathString}" ];
|
|
};
|
|
};
|
|
}
|