From f3651ffa04593dd0102a67b747fc7e43763b3c18 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Mon, 8 Aug 2022 16:32:30 +0200 Subject: [PATCH] asjon: use dedicated redis instance --- configuration.nix | 5 ++++- custom/modules/asjon.nix | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 033d225..d2fee31 100644 --- a/configuration.nix +++ b/configuration.nix @@ -415,7 +415,10 @@ services.asjon.enable = true; # Needed for the Asjon memory module - services.redis.enable = true; + services.redis.servers."asjon" = + { enable = true; + user = "asjon"; + }; ### Program configuration diff --git a/custom/modules/asjon.nix b/custom/modules/asjon.nix index 2937d99..42489d4 100644 --- a/custom/modules/asjon.nix +++ b/custom/modules/asjon.nix @@ -78,6 +78,7 @@ in { REV_REMOTE_HOST = "proxy@rnhmjoj.ydns.eu"; REV_REMOTE_PORT = "22"; REV_KEY = "~/.ssh/proxy"; + REDIS_URL = "redis:///run/redis-asjon/redis.sock"; }; serviceConfig = {