summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nixos/modules/homelab/core/caddy.nix4
-rw-r--r--nixos/modules/homelab/dev/git.nix4
-rw-r--r--nixos/modules/homelab/games/minecraft.nix2
-rw-r--r--nixos/systems/prodesk-server/system.nix2
4 files changed, 6 insertions, 6 deletions
diff --git a/nixos/modules/homelab/core/caddy.nix b/nixos/modules/homelab/core/caddy.nix
index 5904388..b6b8fa3 100644
--- a/nixos/modules/homelab/core/caddy.nix
+++ b/nixos/modules/homelab/core/caddy.nix
@@ -9,8 +9,8 @@ in {
enable = true;
email = "culsans@vivaldi.net";
virtualHosts = {
- "culsans.site".extraConfig = ''
- root * /srv/www/culsans.site
+ ${config.networking.domain}.extraConfig = ''
+ root * /srv/www/${config.networking.domain}
file_server
'';
};
diff --git a/nixos/modules/homelab/dev/git.nix b/nixos/modules/homelab/dev/git.nix
index 774e052..92efae4 100644
--- a/nixos/modules/homelab/dev/git.nix
+++ b/nixos/modules/homelab/dev/git.nix
@@ -36,8 +36,8 @@ in {
css = "/cgit.css";
# logo = "/cgit.png";
- about-filter = "${pkgs.cgit-pink}/lib/cgit/filters/about-formatting.sh";
- # source-filter = "${pkgs.cgit-pink}/lib/cgit/filters/syntax-highlighting.py";
+ about-filter = "${pkgs.cgit}/lib/cgit/filters/about-formatting.sh";
+ # source-filter = "${pkgs.cgit}/lib/cgit/filters/syntax-highlighting.py";
source-filter = lib.getExe pkgs.bat;
clone-url = (lib.concatStringsSep " " [
diff --git a/nixos/modules/homelab/games/minecraft.nix b/nixos/modules/homelab/games/minecraft.nix
index 44c09fb..02f3771 100644
--- a/nixos/modules/homelab/games/minecraft.nix
+++ b/nixos/modules/homelab/games/minecraft.nix
@@ -33,7 +33,7 @@ in {
fantasy = let
modpack = pkgs.fetchPackwizModpack {
- url = "https://git.culsans.site/fantasy-minecraft-modpack.git/plain/pack.toml";
+ url = "https://git.lucia.garden/fantasy-minecraft-modpack.git/plain/pack.toml";
packHash = "sha256-BP1pnXNOkw7jdK6fl2fAVybfO2bD2AyWeLRjrTTsYeI=";
};
in {
diff --git a/nixos/systems/prodesk-server/system.nix b/nixos/systems/prodesk-server/system.nix
index eeb3a3f..9acdef0 100644
--- a/nixos/systems/prodesk-server/system.nix
+++ b/nixos/systems/prodesk-server/system.nix
@@ -64,7 +64,7 @@
};
};
- networking.domain = "culsans.site";
+ networking.domain = "lucia.garden";
# Configure homelab modules.
homelab = {