infrastructure/home/konawall.nix
2022-10-16 12:06:08 -07:00

19 lines
379 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"
"rating:s"]) #++ optional (nixos.networking.hostName == "koishi") "rating:s")
];
};
}