From f5180767b1ca4aee5ca3da38d5cb454802e9b45e Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Fri, 3 Apr 2026 09:07:07 -0500 Subject: [PATCH] updated wiring for hub feature enable --- configuration.nix | 4 +++- flake.nix | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index d738c70..aa51f70 100644 --- a/configuration.nix +++ b/configuration.nix @@ -4,7 +4,9 @@ imports = [ ./modules/modules.nix ./iso/branding.nix - ]; + ] ++ (if builtins.pathExists /etc/nixos/hub-overrides.nix + then [ /etc/nixos/hub-overrides.nix ] + else []); # ── Boot ──────────────────────────────────────────────────── boot.loader.systemd-boot.enable = true; diff --git a/flake.nix b/flake.nix index eb5b029..89222a7 100755 --- a/flake.nix +++ b/flake.nix @@ -27,7 +27,6 @@ self.nixosModules.Sovran_SystemsOS /etc/nixos/role-state.nix /etc/nixos/custom.nix - /etc/nixos/hub-overrides.nix ]; };