mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
16 lines
324 B
Nix
16 lines
324 B
Nix
{ config, nixos, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
services.konawall = {
|
|
enable = true;
|
|
interval = "30m";
|
|
mode = "shuffle";
|
|
commonTags = [ "width:>=1600" ];
|
|
tagList = map (toList) [
|
|
(["score:>=50"
|
|
"touhou" "rating:s"]) #++ optional (nixos.networking.hostName == "koishi") "rating:s")
|
|
];
|
|
};
|
|
}
|