Skip to content

Commit 00241f7

Browse files
committed
install redis cli
1 parent eca81ed commit 00241f7

File tree

4 files changed

+84
-0
lines changed

4 files changed

+84
-0
lines changed

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use flake

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@ worker-configuration.d.ts
1616

1717
!.dev.vars.example
1818
!.env.example
19+
20+
.direnv

flake.lock

Lines changed: 61 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
inputs = {
3+
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
4+
flake-utils.url = "github:numtide/flake-utils";
5+
};
6+
7+
outputs =
8+
{ nixpkgs, flake-utils, ... }:
9+
flake-utils.lib.eachDefaultSystem (
10+
system:
11+
let
12+
pkgs = nixpkgs.legacyPackages.${system};
13+
in
14+
{
15+
devShells.default = pkgs.mkShell {
16+
packages = with pkgs; [ redis ];
17+
};
18+
}
19+
);
20+
}

0 commit comments

Comments
 (0)