From 31c316d19cd974bb81a5d6de62142ff24db1c78e Mon Sep 17 00:00:00 2001 From: triethyl Date: Tue, 2 Sep 2025 10:48:21 -0400 Subject: reorganized directory structure --- lib/helper.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'lib/helper.nix') diff --git a/lib/helper.nix b/lib/helper.nix index d3ccc1c..def0ac7 100644 --- a/lib/helper.nix +++ b/lib/helper.nix @@ -36,20 +36,20 @@ in rec { umport = (import ./umport.nix {inherit (inputs.nixpkgs) lib;}).umport; # Configuration Buildables - mkSystem = system: architecture: ( + mkNixosSystem = system: architecture: ( inputs.nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs helper; }; modules = [ - ../systems/${system}/system.nix - ../modules/system + ../nixos/systems/${system}/system.nix + ../nixos/modules customPackagesOverlay ] ++ umport { paths = [ - ../features/system + ../nixos/features ]; recursive = true; }; @@ -57,7 +57,7 @@ in rec { } ); - mkHome = user: system: architecture: ( + mkHomeManagerUser = user: system: architecture: ( inputs.home-manager.lib.homeManagerConfiguration { pkgs = pkgsFor architecture; extraSpecialArgs = { @@ -65,13 +65,13 @@ in rec { }; modules = [ - ../users/${system}/${user}.nix - ../modules/user + ../home-manager/users/${system}/${user}.nix + ../home-manager/modules customPackagesOverlay ] ++ umport { paths = [ - ../features/user + ../home-manager/features ]; recursive = true; }; -- cgit v1.2.3