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

View file

@ -5,6 +5,7 @@
}: {
imports = [
./hyprlock.nix
./hyprpaper.nix
];
wayland.windowManager.hyprland = {
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";
};
};
}