mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
20 lines
332 B
Nix
20 lines
332 B
Nix
{ config, pkgs, nixos, lib, ... }:
|
|
|
|
|
|
{
|
|
home.packages = [
|
|
config.services.konawall.konashow
|
|
];
|
|
|
|
services.konawall = {
|
|
enable = true;
|
|
interval = "30m";
|
|
mode = "shuffle";
|
|
commonTags = [ "width:>=1600" ];
|
|
tagList = map (lib.toList) [
|
|
(["score:>=50"
|
|
"no_humans"
|
|
"rating:s"])
|
|
];
|
|
};
|
|
}
|