nixos/home/hyprland/hyprpaper.nix
2024-03-13 19:26:10 +01:00

11 lines
280 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}
ipc=true
splash=false
'';
}