From 3877ffcf58cdec5682d5b796525ba7a73b5544fc Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Tue, 2 Jul 2024 13:23:28 -0500 Subject: [PATCH] adding sourcehut --- modules/sourcehut.nix | 13 +++++++++++++ system/shen/configuration.nix | 1 + 2 files changed, 14 insertions(+) create mode 100644 modules/sourcehut.nix diff --git a/modules/sourcehut.nix b/modules/sourcehut.nix new file mode 100644 index 0000000..37560a2 --- /dev/null +++ b/modules/sourcehut.nix @@ -0,0 +1,13 @@ +{ config, lib, pkgs, ... }: + +with lib; +{ + services.sourcehut = { + enable = true; + todo = { + enable = true; + }; + redis.enable = true; + postgresql.enable = true; + }; +} diff --git a/system/shen/configuration.nix b/system/shen/configuration.nix index 13d3ca8..6e6bf17 100644 --- a/system/shen/configuration.nix +++ b/system/shen/configuration.nix @@ -11,6 +11,7 @@ ../../pkgs/base-packages.nix ../../modules/base.nix ../../modules/localai.nix + ../../modules/sourcehut.nix # ../../pkgs/ai.nix ];