From 692f64fe65e6c6459fc7377ae7bf6fb661ab0f8c Mon Sep 17 00:00:00 2001 From: xqtc161 Date: Thu, 16 May 2024 19:00:47 +0200 Subject: [PATCH] Enable forgejo on beleth --- hosts/x86_64-linux/beleth/default.nix | 1 + hosts/x86_64-linux/beleth/git.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 hosts/x86_64-linux/beleth/git.nix diff --git a/hosts/x86_64-linux/beleth/default.nix b/hosts/x86_64-linux/beleth/default.nix index 6735696..f301d15 100644 --- a/hosts/x86_64-linux/beleth/default.nix +++ b/hosts/x86_64-linux/beleth/default.nix @@ -14,6 +14,7 @@ with lib; { ./transmission.nix ./lanrarari.nix ./uptime.nix + ./git.nix ../../gc.nix ../../../common ]; diff --git a/hosts/x86_64-linux/beleth/git.nix b/hosts/x86_64-linux/beleth/git.nix new file mode 100644 index 0000000..202a11c --- /dev/null +++ b/hosts/x86_64-linux/beleth/git.nix @@ -0,0 +1,6 @@ +{lib, inputs, ...}: +{ + services.forgejo = { + enable = true; + }; +}