infrastructure/config/users/kat/sway/konawall.nix
2021-09-15 19:33:54 +01:00

16 lines
239 B
Nix

{ config, lib, ... }:
with lib;
{
services.konawall = {
enable = true;
interval = "30m";
mode = "shuffle";
commonTags = [ "width:>=1600" ];
tagList = map (toList) [
["score:>=50"
"touhou"]
];
};
}