mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
19 lines
388 B
Nix
19 lines
388 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"
|
|
"touhou" "rating:s"]) #++ optional (nixos.networking.hostName == "koishi") "rating:s")
|
|
];
|
|
};
|
|
}
|