fmt: reformatted using nixpkgs-fmt prettifier mpd: created configuration hypr: add window rules commons: add usingMusicPlayerDaemon variable
16 lines
373 B
Nix
16 lines
373 B
Nix
{ pkgs
|
|
, config
|
|
, ...
|
|
}: {
|
|
services.hyprpaper = {
|
|
enable = true;
|
|
settings = {
|
|
ipc = "on";
|
|
splash = false;
|
|
preload = [ config.myWallPaperPathString ];
|
|
wallpaper = [ ",${config.myWallPaperPathString}" ];
|
|
#preload = [/home/stvnliu/Downloads/mao-zedong.jpg];
|
|
#wallpaper = [",/home/stvnliu/Downloads/mao-zedong.jpg"];
|
|
};
|
|
};
|
|
}
|