mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
38 lines
614 B
Nix
38 lines
614 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 = "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";
|
|
};
|
|
};
|
|
|
|
}
|