From 32d110cfb34f07dae67f44c50d44ac38c4705fea Mon Sep 17 00:00:00 2001 From: Alexandre1a Date: Thu, 15 Jan 2026 21:42:40 +0100 Subject: [PATCH] Added a missing module --- hosts/light/configuration.nix | 2 +- hosts/light/modules.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/light/configuration.nix b/hosts/light/configuration.nix index 306542f..aaa8227 100644 --- a/hosts/light/configuration.nix +++ b/hosts/light/configuration.nix @@ -1,7 +1,7 @@ { pkgs, inputs, config, ... }: { imports = [ - #./modules.nix + ./modules.nix ]; networking = { diff --git a/hosts/light/modules.nix b/hosts/light/modules.nix index d36ea1b..421907c 100644 --- a/hosts/light/modules.nix +++ b/hosts/light/modules.nix @@ -1,5 +1,6 @@ { imports = [ + ./hardware-configuration.nix ../common/modules.nix ]; }