From 7593592241e948a056f17f172732d390349b70c4 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sat, 14 Sep 2024 23:24:10 +0300 Subject: [PATCH] chore(users/tazjin): move my homepage module into //users This was in //ops for legacy reasons, but this is really not necessary. Change-Id: I758b257838993ef0f7d55809c137118826e2ba85 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12483 Tested-by: BuildkiteCI Reviewed-by: tazjin --- users/tazjin/nixos/koptevo/default.nix | 4 ++-- .../tazj.in.nix => users/tazjin/nixos/modules/homepage.nix | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) rename ops/modules/www/tazj.in.nix => users/tazjin/nixos/modules/homepage.nix (97%) diff --git a/users/tazjin/nixos/koptevo/default.nix b/users/tazjin/nixos/koptevo/default.nix index fe34fb21a..e5199f34e 100644 --- a/users/tazjin/nixos/koptevo/default.nix +++ b/users/tazjin/nixos/koptevo/default.nix @@ -11,12 +11,12 @@ in imports = [ (mod "quassel.nix") (mod "www/base.nix") - (mod "www/tazj.in.nix") (usermod "airsonic.nix") (usermod "geesefs.nix") + (usermod "homepage.nix") + (usermod "miniflux.nix") (usermod "predlozhnik.nix") (usermod "tgsa.nix") - (usermod "miniflux.nix") (depot.third_party.agenix.src + "/modules/age.nix") ]; diff --git a/ops/modules/www/tazj.in.nix b/users/tazjin/nixos/modules/homepage.nix similarity index 97% rename from ops/modules/www/tazj.in.nix rename to users/tazjin/nixos/modules/homepage.nix index 47eefca2a..b109fbefd 100644 --- a/ops/modules/www/tazj.in.nix +++ b/users/tazjin/nixos/modules/homepage.nix @@ -2,10 +2,6 @@ { depot, config, lib, pkgs, ... }: { - imports = [ - ./base.nix - ]; - config = { services.nginx.virtualHosts."tazj.in" = { enableACME = true;