2024-08-09 11:11:04 -04:00
|
|
|
{ pkgs, ... }:
|
|
|
|
let
|
|
|
|
randWallpaper = pkgs.runCommand "stylix-wallpaper" { } ''
|
|
|
|
numWallpapers =
|
|
|
|
$((1 + $RANDOM % 10))
|
|
|
|
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
{
|
|
|
|
stylix = {
|
|
|
|
enable = true;
|
|
|
|
image = randWallpaper;
|
2025-03-03 17:32:47 -05:00
|
|
|
#image = "/home/alice/Pictures/Screenshots/screenshot_2024-12-04-2030.png";
|
2024-08-09 11:11:04 -04:00
|
|
|
polarity = "dark";
|
|
|
|
};
|
|
|
|
}
|