all repos — nixfiles @ e3da3c8ccb29fcbd3ca52d8e3bce07c4fc5bc5e3

System and user configuration, managed by nix and home-manager

marvin: set up temporary redis server for testing
Alan Pearce alan@alanpearce.eu
Sat, 30 Nov 2024 18:44:44 +0100
commit

e3da3c8ccb29fcbd3ca52d8e3bce07c4fc5bc5e3

parent

5b215b8a2d5f42566fb5b909178ddf32189b46d1

1 files changed, 8 insertions(+), 0 deletions(-)

jump to
M system/marvin.nixsystem/marvin.nix
@@ -11,6 +11,14 @@ user = "root";     group = "wheel";
   };
 
+  services.redis = {
+    enable = true;
+    bind = "127.0.0.1 ::1";
+    extraConfig = ''
+      save ""
+    '';
+  };
+
   programs.fish.enable = true;
   environment.shells = with pkgs; [
     fish