about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2020-06-19T00·55+0100
committerVincent Ambo <mail@tazj.in>2020-06-19T00·56+0100
commit298291d9ae32012b92ebc2b6ef0707acfe9bc1fa (patch)
tree2dda7ff34eec193ff771ecf92a15a3139b6f788b /users
parenta37b4fbef301b5ad82e9f6939c4e736514ac2fb8 (diff)
chore(tazjin/camden): Get rid of Honk ... again r/1028
I swear I've done this before. Multiple times.

Change-Id: I0d9fcb8fbb05b7b3a24392a204553ce60855f8df
Diffstat (limited to 'users')
-rw-r--r--users/tazjin/nixos/camden/default.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/users/tazjin/nixos/camden/default.nix b/users/tazjin/nixos/camden/default.nix
index ccbdfbe034..fdc48e596b 100644
--- a/users/tazjin/nixos/camden/default.nix
+++ b/users/tazjin/nixos/camden/default.nix
@@ -179,24 +179,6 @@ in lib.fix(self: {
     };
   };
 
-  # Run honk as the ActivityPub server, using all the fancy systemd
-  # magic.
-  systemd.services.honk = {
-    wantedBy = [ "multi-user.target" ];
-    script = lib.concatStringsSep " " [
-      "${depot.third_party.honk}/bin/honk"
-      "-datadir /var/lib/honk"
-      "-viewdir ${depot.third_party.honk.src}"
-    ];
-
-    serviceConfig = {
-      Restart = "always";
-      DynamicUser = true;
-      StateDirectory = "honk";
-      WorkingDirectory = "/var/lib/honk";
-    };
-  };
-
   # NixOS 20.03 broke nginx and I can't be bothered to debug it
   # anymore, all solution attempts have failed, so here's a
   # brute-force fix.