From 329882275b40f8a445e88cbaa5b859cdf10b94d8 Mon Sep 17 00:00:00 2001 From: larstvei Date: Sat, 23 Aug 2025 15:28:17 +0200 Subject: [PATCH] Rename macos and core modules to system and system/darwin --- hosts/macbook/default.nix | 4 ++-- modules/macos.nix => system/darwin/default.nix | 2 +- modules/core.nix => system/default.nix | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename modules/macos.nix => system/darwin/default.nix (96%) rename modules/core.nix => system/default.nix (100%) diff --git a/hosts/macbook/default.nix b/hosts/macbook/default.nix index 14e6723..e978d3c 100644 --- a/hosts/macbook/default.nix +++ b/hosts/macbook/default.nix @@ -1,8 +1,8 @@ { emacs-larstvei, ... }: { imports = [ - ../../modules/core.nix - ../../modules/macos.nix + ../../system + ../../system/darwin ]; home-manager = { diff --git a/modules/macos.nix b/system/darwin/default.nix similarity index 96% rename from modules/macos.nix rename to system/darwin/default.nix index f622ceb..9232127 100644 --- a/modules/macos.nix +++ b/system/darwin/default.nix @@ -1,7 +1,7 @@ { pkgs, ... }: { - fonts.packages = import ../home/fonts { inherit pkgs; }; + fonts.packages = import ../../home/fonts { inherit pkgs; }; users.users = { larstvei = { diff --git a/modules/core.nix b/system/default.nix similarity index 100% rename from modules/core.nix rename to system/default.nix