about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--modules/profiles/tvl.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/modules/profiles/tvl.nix b/modules/profiles/tvl.nix
index 4472ddff..ac7a7da4 100644
--- a/modules/profiles/tvl.nix
+++ b/modules/profiles/tvl.nix
@@ -2,14 +2,12 @@
 
 let
   cfg = config.vuizvui.profiles.tvl;
-
-  tvlShortDNS = [ "b" "cl" ];
 in
 
 {
   options = {
     vuizvui.profiles.tvl = {
-      enable = lib.mkEnableOption "tvl-specific tweaks";
+      enable = lib.mkEnableOption "TVL-specific tweaks";
     };
   };
 
@@ -25,9 +23,7 @@ in
 
     };
 
-    networking.hosts = {
-      "49.12.129.211" = tvlShortDNS;
-      "2a01:4f8:242:5b21:0:feed:edef:beef" = tvlShortDNS;
-    };
+    # TVL short DNS
+    networking.domain = lib.mkDefault "tvl.su";
   };
 }