diff options
author | Vincent Ambo <tazjin@tvl.su> | 2024-09-14T20·24+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2024-09-14T23·47+0000 |
commit | 7593592241e948a056f17f172732d390349b70c4 (patch) | |
tree | 6087d00e929f565ed4817b57b3dc3a5147845541 | |
parent | 7f5956b2bee77a75611460b9266ef726d1f08249 (diff) |
chore(users/tazjin): move my homepage module into //users r/8691
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 <tazjin@tvl.su>
-rw-r--r-- | users/tazjin/nixos/koptevo/default.nix | 4 | ||||
-rw-r--r-- | users/tazjin/nixos/modules/homepage.nix (renamed from ops/modules/www/tazj.in.nix) | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/users/tazjin/nixos/koptevo/default.nix b/users/tazjin/nixos/koptevo/default.nix index fe34fb21aaa0..e5199f34e7de 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 index 47eefca2a622..b109fbefd3be 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; |