tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/redis: capitalize service description
Bjørn Forsman
11 years ago
d5017499
25a67453
+2
-2
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
databases
redis.nix
+2
-2
nixos/modules/services/databases/redis.nix
reviewed
···
201
201
environment.systemPackages = [ cfg.package ];
202
202
203
203
systemd.services.redis_init =
204
204
-
{ description = "Redis server initialisation";
204
204
+
{ description = "Redis Server Initialisation";
205
205
206
206
wantedBy = [ "redis.service" ];
207
207
before = [ "redis.service" ];
···
216
216
};
217
217
218
218
systemd.services.redis =
219
219
-
{ description = "Redis server";
219
219
+
{ description = "Redis Server";
220
220
221
221
wantedBy = [ "multi-user.target" ];
222
222
after = [ "network.target" ];