hyprland: extract hyprpaper

This commit is contained in:
Jordan Holt 2025-03-16 22:05:15 +00:00
parent beb2df97be
commit 643d6819ee
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520
2 changed files with 22 additions and 16 deletions

View File

@ -6,6 +6,7 @@
{ {
imports = [ imports = [
./hyprlock.nix ./hyprlock.nix
./hyprpaper.nix
]; ];
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
@ -194,22 +195,6 @@
}; };
}; };
services.hyprpaper = {
enable = true;
settings = {
ipc = "on";
splash = false;
preload = [
"/home/jordan/Pictures/Aurora.png"
];
wallpaper = [
",/home/jordan/Pictures/Aurora.png"
];
};
};
home.packages = with pkgs.unstable; [ home.packages = with pkgs.unstable; [
adw-gtk3 adw-gtk3
anyrun anyrun

View File

@ -0,0 +1,21 @@
{
...
}:
{
services.hyprpaper = {
enable = true;
settings = {
ipc = "on";
splash = false;
preload = [
"/home/jordan/Pictures/Aurora.png"
];
wallpaper = [
",/home/jordan/Pictures/Aurora.png"
];
};
};
}