infrastructure/config/users/kat/sway/konawall.nix
2022-07-10 13:58:26 -07:00

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")
];
};
}