This commit is contained in:
gwg313 2026-01-24 09:44:01 -05:00
parent 49cca73363
commit c05813575f
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
40 changed files with 2364 additions and 526 deletions

View file

@ -0,0 +1,29 @@
{
lib,
pkgs,
...
}:
{
services.hyprpaper = {
enable = true;
settings = {
ipc = "on";
splash = false;
splash_offset = 2;
};
};
home.packages = [
pkgs.hyprpaper
];
systemd.user.services.hyprpaper.Unit.After = lib.mkForce "graphical-session.target";
wayland.windowManager.hyprland.settings.exec-once = [
"systemctl --user enable --now hyprpaper.service"
];
services.hyprpaper.settings.wallpaper = lib.singleton {
# TODO: Remove after merge https://github.com/nix-community/stylix/pull/2087
monitor = "eDP-1";
path = toString ../../../wallpapers/oasis.png;
};
}