14 lines
188 B
Nix
14 lines
188 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
{
|
|
services.sourcehut = {
|
|
enable = true;
|
|
todo = {
|
|
enable = true;
|
|
};
|
|
redis.enable = true;
|
|
postgresql.enable = true;
|
|
};
|
|
}
|