mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-02-05 00:26:47 +05:30
20 lines
327 B
Nix
20 lines
327 B
Nix
{pkgs, ...}: {
|
|
services.hyprpaper = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
ipc = "on";
|
|
splash = false;
|
|
splash_offset = 20;
|
|
|
|
wallpaper = {
|
|
monitor = "";
|
|
path = "~/Wallpapers/new/sunset-pixel.png";
|
|
fit_mode = "";
|
|
};
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [hyprpaper];
|
|
}
|