From 8ae124a2757a962659fd00f6401603d0b891429e Mon Sep 17 00:00:00 2001 From: matt1432 Date: Sat, 21 Dec 2024 19:07:46 -0500 Subject: [PATCH] feat(dns): point cache-apt to homie --- configurations/cluster/modules/unbound.nix | 3 ++- homeManagerModules/neovim/langs/default.nix | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/configurations/cluster/modules/unbound.nix b/configurations/cluster/modules/unbound.nix index 0019e791..b64a7201 100644 --- a/configurations/cluster/modules/unbound.nix +++ b/configurations/cluster/modules/unbound.nix @@ -52,7 +52,8 @@ in { publicApps = remove "nelim.org" (mapAttrsToList (n: v: v.hostName) config.services.caddy.virtualHosts); in mergeAttrsList ( - (map forceResolveEntry publicApps) + [(mkLocalEntry "cache-apt.nelim.org" "100.64.0.10")] + ++ (map forceResolveEntry publicApps) ++ [ (mkMinecraftEntry "mc.nelim.org" 25569) (mkMinecraftEntry "mc2.nelim.org" 25560) diff --git a/homeManagerModules/neovim/langs/default.nix b/homeManagerModules/neovim/langs/default.nix index 60e63d9e..0a470ebd 100644 --- a/homeManagerModules/neovim/langs/default.nix +++ b/homeManagerModules/neovim/langs/default.nix @@ -24,6 +24,7 @@ in { (import ./web.nix self) ]; + # FIXME: try making LSPs and stuff only available through devShells config.programs = mkIf cfg.enableIde { neovim = { extraLuaConfig =