02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
37 lines
624 B
Nix
37 lines
624 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.canto-daemon;
|
|
|
|
in {
|
|
|
|
##### interface
|
|
|
|
options = {
|
|
|
|
services.canto-daemon = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc "Whether to enable the canto RSS daemon.";
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
##### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.user.services.canto-daemon = {
|
|
description = "Canto RSS Daemon";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "default.target" ];
|
|
serviceConfig.ExecStart = "${pkgs.canto-daemon}/bin/canto-daemon";
|
|
};
|
|
};
|
|
|
|
}
|