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