Files
nixos/Droidnix/generated/hyprland/decorations/rotating_wallpaper.nix
T
2026-03-17 19:03:23 +00:00

23 lines
422 B
Nix

{
config,
pkgs,
lib,
user,
flakeRoot,
...
}:
let
wallpaperSource = "${flakeRoot}/assets/hyprland/wallpaperstuff";
in
{
home-manager.users.${user.username} = {
programs.wpaperd.enable = true;
xdg.configFile."wpaperd/wallpaper.conf".source = "${wallpaperSource}/wpaperd-runtime.toml";
# Copy the rest of the folder (if needed)
home.file.".config/wpaperd/".source = wallpaperSource;
};
}