diff --git a/background.png b/background.png new file mode 100644 index 0000000..fcb1f8a Binary files /dev/null and b/background.png differ diff --git a/modules/home-manager/hyprland.nix b/modules/home-manager/hyprland.nix index 12dd9ab..4ee4e5d 100644 --- a/modules/home-manager/hyprland.nix +++ b/modules/home-manager/hyprland.nix @@ -5,6 +5,7 @@ }: { imports = [ ./hyprlock.nix + ./hyprpaper.nix ]; wayland.windowManager.hyprland = { enable = true; diff --git a/modules/home-manager/hyprpaper.nix b/modules/home-manager/hyprpaper.nix new file mode 100644 index 0000000..2a96170 --- /dev/null +++ b/modules/home-manager/hyprpaper.nix @@ -0,0 +1,13 @@ +{ + config, + pkgs, + ... +}: { + services.hyprpaper = { + enable = true; + settings = { + preload = "/home/sprechtl/dotfiles/background.png"; + wallpaper = "/home/sprechtl/dotfiles/background.png"; + }; + }; +}