add stylix to artemision config

This commit is contained in:
2024-08-09 11:11:04 -04:00
parent 3ac21fe70e
commit 64f28b82d2
2 changed files with 23 additions and 7 deletions

View File

@ -0,0 +1,15 @@
{ pkgs, ... }:
let
randWallpaper = pkgs.runCommand "stylix-wallpaper" { } ''
numWallpapers =
$((1 + $RANDOM % 10))
'';
in
{
stylix = {
enable = true;
image = randWallpaper;
polarity = "dark";
};
}