Files
nextcloud_ecosystem/OLD CONFIGS/system-master_BAK/home/wallpaper.nix
T
2026-02-22 17:28:02 +01:00

24 lines
429 B
Nix
Executable File

{ pkgs, ... }:
{
home.packages = with pkgs; [
hyprpaper
];
services.hyprpaper.enable = true;
services.hyprpaper.settings = {
ipc = "on";
splash = false;
splash_offset = 2.0;
preload = [ "~/.background-image.png" ];
wallpaper = [ ",~/.background-image.png" ];
};
home.file = {
background = {
source = ../assets/background.png;
target = ".background-image.png";
};
};
}