summary refs log tree commit diff
path: root/nixos/modules/services/misc/canto-daemon.nix
diff options
context:
space:
mode:
authordevhell <^@regexmail.net>2015-01-29 22:53:31 +0000
committerdevhell <^@regexmail.net>2015-02-08 14:16:17 +0000
commita9ac564f5000de9e7bf639378efd0b429857a4ea (patch)
treee9098bfeabb2e5feea8634a4d6205c8a4bd9d1c3 /nixos/modules/services/misc/canto-daemon.nix
parent37f58c4f46df41005f2e0ac91d1bb2b15de3887a (diff)
downloadnixpkgs-a9ac564f5000de9e7bf639378efd0b429857a4ea.tar
nixpkgs-a9ac564f5000de9e7bf639378efd0b429857a4ea.tar.gz
nixpkgs-a9ac564f5000de9e7bf639378efd0b429857a4ea.tar.bz2
nixpkgs-a9ac564f5000de9e7bf639378efd0b429857a4ea.tar.lz
nixpkgs-a9ac564f5000de9e7bf639378efd0b429857a4ea.tar.xz
nixpkgs-a9ac564f5000de9e7bf639378efd0b429857a4ea.tar.zst
nixpkgs-a9ac564f5000de9e7bf639378efd0b429857a4ea.zip
canto-daemon: Fix typo and remove TimeoutStopSec
Diffstat (limited to 'nixos/modules/services/misc/canto-daemon.nix')
-rw-r--r--nixos/modules/services/misc/canto-daemon.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/misc/canto-daemon.nix b/nixos/modules/services/misc/canto-daemon.nix
index ac292cd2826..db51a263aab 100644
--- a/nixos/modules/services/misc/canto-daemon.nix
+++ b/nixos/modules/services/misc/canto-daemon.nix
@@ -12,7 +12,7 @@ in {
 
   options = {
 
-    services.canto-daemon {
+    services.canto-daemon = {
       enable = mkOption {
         type = types.bool;
         default = false;
@@ -26,12 +26,12 @@ in {
 
   config = mkIf cfg.enable {
 
-    systemd.user.services.canto-next = {
+    systemd.user.services.canto-daemon = {
       description = "Canto RSS Daemon";
       after = [ "network.target" ];
       wantedBy = [ "default.target" ];
       serviceConfig.ExecStart = "${pkgs.canto-daemon}/bin/canto-daemon";
-      TimeoutStopSec = 10;
     };
   };
+
 }