Add wallpaper of a monkey to all hyprland screens

This commit is contained in:
2026-01-16 22:27:32 +01:00
parent 25acaf1a43
commit c02ae342fe
3 changed files with 18 additions and 0 deletions

BIN
backgrounds/monkey.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@@ -13,6 +13,7 @@
./programs/direnv.nix
./programs/firefox.nix
./wm/hyprland.nix
./wm/hyprpaper.nix
];
}

17
wm/hyprpaper.nix Normal file
View File

@@ -0,0 +1,17 @@
{ config, pkgs, ... }:
let
wallpaper = builtins.toString ../backgrounds/monkey.jpg;
in
{
services.hyprpaper = {
enable = true;
settings = {
preload = [ wallpaper ];
wallpaper = [
",${wallpaper}"
];
};
};
}