fix(different mapping method) mapping as flake with method

This commit is contained in:
madmin 2024-07-09 09:52:12 +02:00
parent 6a37e231f5
commit efed5f9fda
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ let
};
# Import this user's personal/home configurations
home-manager.users.${configVars.username} = import (configLib.relativeToRoot "home/${configVars.username}/${config.networking.hostName}.nix");
home-manager.users.${configVars.username} = import ("${self}/home/${configVars.username}/${config.networking.hostName}.nix");
};
in
{

View File

@ -29,7 +29,7 @@
};
}
]
++ (map configLib.relativeToRoot [
++ (map (x: "${self}/" + x) [
# = Required Configs ####################
"systems/common/core"