1 { config, lib, pkgs, ... }:
7 cfg = config.services.canto-daemon;
15 services.canto-daemon = {
19 description = lib.mdDoc "Whether to enable the canto RSS daemon.";
27 config = mkIf cfg.enable {
29 systemd.user.services.canto-daemon = {
30 description = "Canto RSS Daemon";
31 after = [ "network.target" ];
32 wantedBy = [ "default.target" ];
33 serviceConfig.ExecStart = "${pkgs.canto-daemon}/bin/canto-daemon";