summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-02 10:48:21 -0400
committertriethyl <triethylammonium@pm.me>2025-09-02 10:48:21 -0400
commit31c316d19cd974bb81a5d6de62142ff24db1c78e (patch)
treecb941422c76cb8953830a8d58c8e14dca1a10319 /lib
parent1c21018347aa277caba74e554cb8d1b1e7fc6bed (diff)
reorganized directory structure
Diffstat (limited to 'lib')
-rw-r--r--lib/helper.nix16
1 files changed, 8 insertions, 8 deletions
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;
};