hyprland: extract hyprpaper

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

View File

@ -6,6 +6,7 @@
{
imports = [
./hyprlock.nix
./hyprpaper.nix
];
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; [
adw-gtk3
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"
];
};
};
}