Files
nixos-config/home/themes/wallpaper.nix
Elias Schröter 9fc14abee9 lock flake
fix unlocked flake error on new install
2026-03-20 10:23:45 +01:00

13 lines
282 B
Nix

{ pkgs, ... }:
let
images = pkgs.callPackage ./images { };
in
{
services.wpaperd = {
enable = true;
settings.any.path = "${images.background}"; # TODO: change wallpaper / make automatic pull from some website? -> animals and fallback to something if no iternet
};
}