nixos/home/hyprland/hyprpaper.nix
2024-03-13 18:09:30 +01:00

9 lines
252 B
Nix

{ pkgs, config, ... }: {
home.packages = with pkgs; [ hyprpaper ];
xdg.configFile."hypr/hyprpaper.conf".text = ''
preload = ~/.config/wallpaper/${config.theme.wallpaper}
wallpaper = ,~/.config/wallpaper/${config.theme.wallpaper}
'';
}