From fbd006ae4c05c2bd9e8096168b8bd3f80e68a170 Mon Sep 17 00:00:00 2001 From: tux Date: Tue, 11 Aug 2026 21:08:50 +0530 Subject: [PATCH] refactor(hosts): scope networking to vega host --- modules/hosts/default.nix | 1 - modules/hosts/vega/config.nix | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/hosts/default.nix b/modules/hosts/default.nix index 6ccb964..2d3458d 100644 --- a/modules/hosts/default.nix +++ b/modules/hosts/default.nix @@ -63,7 +63,6 @@ let }; modules = [ config.flake.modules.droid.core - config.flake.modules.droid.networking config.flake.modules.droid.${hostName} ]; }; diff --git a/modules/hosts/vega/config.nix b/modules/hosts/vega/config.nix index 8547718..0cd6fbd 100644 --- a/modules/hosts/vega/config.nix +++ b/modules/hosts/vega/config.nix @@ -1,3 +1,4 @@ +{ config, ... }: { flake.modules.droid.vega = { @@ -6,6 +7,10 @@ ... }: { + imports = with config.flake.modules.droid; [ + networking + ]; + # @TODO: Broken currently # android-integration.am.enable = true; # android-integration.termux-open-url.enable = true;