MyNixOS website logo
option

services.clipcat.daemonSettings

Configuration settings for clipcatd. All available options can be found here: https://github.com/xrelkd/clipcat?tab=readme-ov-file#configuration.

Declarations
Type
TOML value
Default
{
  daemonize = true;
}
Example
''
  {
    daemonize = true;
    max_history = 50;
    history_file_path = "/home/<username>/.cache/clipcat/clipcatd-history";
    pid_file = "/run/user/<user-id>/clipcatd.pid";
    primary_threshold_ms = 5000;
    log = {
      file_path = "/path/to/log/file";
      emit_journald = true;
      emit_stdout = false;
      emit_stderr = false;
      level = "INFO";
    };
  }
''</user-id></username>