summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorAlan Pearce2024-11-30 18:44:44 +0100
committerAlan Pearce2024-11-30 18:44:44 +0100
commite3da3c8ccb29fcbd3ca52d8e3bce07c4fc5bc5e3 (patch)
tree137bd47a8adbce8e6910a373d4e675a92743fc7d /system
parent5b215b8a2d5f42566fb5b909178ddf32189b46d1 (diff)
downloadnixfiles-e3da3c8ccb29fcbd3ca52d8e3bce07c4fc5bc5e3.tar.lz
nixfiles-e3da3c8ccb29fcbd3ca52d8e3bce07c4fc5bc5e3.tar.zst
nixfiles-e3da3c8ccb29fcbd3ca52d8e3bce07c4fc5bc5e3.zip
marvin: set up temporary redis server for testing
Diffstat (limited to 'system')
-rw-r--r--system/marvin.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/system/marvin.nix b/system/marvin.nix
index 1907aa39..0e022fb7 100644
--- a/system/marvin.nix
+++ b/system/marvin.nix
@@ -11,6 +11,14 @@
     group = "wheel";
   };
 
+  services.redis = {
+    enable = true;
+    bind = "127.0.0.1 ::1";
+    extraConfig = ''
+      save ""
+    '';
+  };
+
   programs.fish.enable = true;
   environment.shells = with pkgs; [
     fish