diff options
author | Alan Pearce | 2024-11-30 18:44:44 +0100 |
---|---|---|
committer | Alan Pearce | 2024-11-30 18:44:44 +0100 |
commit | e3da3c8ccb29fcbd3ca52d8e3bce07c4fc5bc5e3 (patch) | |
tree | 137bd47a8adbce8e6910a373d4e675a92743fc7d | |
parent | 5b215b8a2d5f42566fb5b909178ddf32189b46d1 (diff) | |
download | nixfiles-e3da3c8ccb29fcbd3ca52d8e3bce07c4fc5bc5e3.tar.lz nixfiles-e3da3c8ccb29fcbd3ca52d8e3bce07c4fc5bc5e3.tar.zst nixfiles-e3da3c8ccb29fcbd3ca52d8e3bce07c4fc5bc5e3.zip |
marvin: set up temporary redis server for testing
-rw-r--r-- | system/marvin.nix | 8 |
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 |