feat: hyprpaper?

This commit is contained in:
s-prechtl 2024-09-15 12:41:24 +02:00
parent 0844945c23
commit b9d662373b
3 changed files with 14 additions and 0 deletions

BIN
background.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 KiB

View file

@ -5,6 +5,7 @@
}: { }: {
imports = [ imports = [
./hyprlock.nix ./hyprlock.nix
./hyprpaper.nix
]; ];
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;

View file

@ -0,0 +1,13 @@
{
config,
pkgs,
...
}: {
services.hyprpaper = {
enable = true;
settings = {
preload = "/home/sprechtl/dotfiles/background.png";
wallpaper = "/home/sprechtl/dotfiles/background.png";
};
};
}