dot.nix/home/toph/common/optional/hyprland/services/hyprpaper.nix
Chris Toph 8a5135aaca Refactor Hyprland config structure
- grouped services and programs
2025-04-03 01:36:09 -04:00

23 lines
380 B
Nix

# Hyprpaper is used to set the wallpaper on the system
{
pkgs,
config,
...
}:
{
# The wallpaper is set by stylix
services.hyprpaper = {
enable = true;
settings = {
ipc = "on";
splash = false;
splash_offset = 2.0;
};
};
wayland.windowManager.hyprland.settings = {
exec-once = [
"${pkgs.hyprpaper}/bin/hyprpaper"
];
};
}