nix/home/modules/hyprpaper.nix
2026-02-11 15:59:35 -05:00

20 lines
288 B
Nix

{
pkgs,
lib,
config,
isNixOS,
...
}:
{
home.packages = lib.mkIf isNixOS [ pkgs.hyprpaper ];
xdg.configFile."hypr/hyprpaper.conf".text = ''
wallpaper {
monitor =
path = ${config.home.homeDirectory}/img/screen/wallpaper.jpg
}
splash = false
'';
}