From a8cb1f33b2c0ea49c434b5f251fe45938d050f6a Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Thu, 20 Feb 2025 04:19:27 -0500 Subject: nixos: include nginx proxies in mixins --- systems/atlas/default.nix | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) (limited to 'systems/atlas/default.nix') diff --git a/systems/atlas/default.nix b/systems/atlas/default.nix index 9c8cc7b..0e85853 100644 --- a/systems/atlas/default.nix +++ b/systems/atlas/default.nix @@ -3,10 +3,6 @@ imports = [ (modulesPath + "/profiles/minimal.nix") ./hardware-configuration.nix - ./forgejo.nix - ./grafana.nix - ./kanidm.nix - ./miniflux.nix ./moyai.nix ./nixpkgs-tracker-bot.nix ./victoria-metrics.nix @@ -23,6 +19,10 @@ loader.efi.canTouchEfiVariables = true; }; + catppuccin = { + forgejo.enable = true; + }; + networking = { domain = "getchoo.com"; hostName = "atlas"; @@ -36,7 +36,24 @@ nixpkgs.hostPlatform = "aarch64-linux"; services = { + forgejo.enable = true; + + grafana.enable = true; + hedgedoc.enable = true; + + kanidm = { + enableClient = true; + enableServer = true; + }; + + miniflux = { + enable = true; + config = { + METRICS_COLLECTOR = 1; + }; + }; + nginx.enable = true; }; -- cgit v1.2.3