diff options
| author | seth <[email protected]> | 2023-11-30 23:30:00 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-01 07:12:49 -0500 |
| commit | 85402f9103b55dff65c6a6079c6902080e5a30a6 (patch) | |
| tree | eba04a9f9938ac1d7ac14cb5d7bc5e0fb8f4db16 /parts/dev.nix | |
| parent | 41dfa94258215769b9d844875e79097d4a498770 (diff) | |
feat: add redis for reactboard
Diffstat (limited to 'parts/dev.nix')
| -rw-r--r-- | parts/dev.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/parts/dev.nix b/parts/dev.nix index 4cd51d6..5628e33 100644 --- a/parts/dev.nix +++ b/parts/dev.nix @@ -49,12 +49,17 @@ pkgs.linkFarm "ci-gate" paths; }; + proc.groups.daemons.processes = { + redis.command = lib.getExe' pkgs.redis "redis-server"; + }; + devShells = { default = pkgs.mkShell { packages = with pkgs; [ # general actionlint nodePackages_latest.prettier + config.proc.groups.daemons.package # rust cargo |
