From c6671fea4ec5351adf2980daad53b5c20c573bf8 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Fri, 20 Feb 2026 21:52:25 +0100 Subject: [PATCH] fix: add 'lib' as default module --- home/hosts/andromache/default.nix | 1 + home/hosts/astyanax/default.nix | 2 +- home/hosts/work/default.nix | 1 + home/modules/{lib.nix => default.nix} | 0 4 files changed, 3 insertions(+), 1 deletion(-) rename home/modules/{lib.nix => default.nix} (100%) diff --git a/home/hosts/andromache/default.nix b/home/hosts/andromache/default.nix index 3b7cccc..09922d7 100644 --- a/home/hosts/andromache/default.nix +++ b/home/hosts/andromache/default.nix @@ -10,6 +10,7 @@ let in { imports = [ + ../../modules ../../modules/ai-tools.nix ../../modules/audio ../../modules/cloud diff --git a/home/hosts/astyanax/default.nix b/home/hosts/astyanax/default.nix index 238fd7e..bccabf6 100644 --- a/home/hosts/astyanax/default.nix +++ b/home/hosts/astyanax/default.nix @@ -9,7 +9,7 @@ let in { imports = [ - ../../modules/lib.nix + ../../modules ../../modules/ai-tools.nix ../../modules/audio ../../modules/anki.nix diff --git a/home/hosts/work/default.nix b/home/hosts/work/default.nix index efb78b3..95742c1 100644 --- a/home/hosts/work/default.nix +++ b/home/hosts/work/default.nix @@ -11,6 +11,7 @@ in { imports = [ inputs.sops-nix.homeManagerModules.sops + ../../modules ../../modules/stylix.nix ../../modules/lib.nix ../../modules/ai-tools.nix diff --git a/home/modules/lib.nix b/home/modules/default.nix similarity index 100% rename from home/modules/lib.nix rename to home/modules/default.nix