nest-home/redis/redis.nix

34 lines
555 B
Nix
Raw Normal View History

2024-08-16 08:54:22 +00:00
{ pkgs, ... }:
{
home.file = {
".config/redis/redis.conf" = {
source = ./redis/redis.conf;
};
};
systemd.user.services = {
Redis = {
Unit = {
Description = "Vic's redis";
After = [ "network-online.target" ];
};
Service = {
Type = "oneshot";
ExecStart = "redis-server .config/redis/redis.conf";
SyslogIdentifier = "hackey";
Restart = "always";
TimeoutSec = 0;
};
Install = {
WantedBy = [ "default.target" ];
};
};
};
}