• Relocates common configurations from a user-specific directory to a global hierarchy • Adds host-specific files and updates import paths for better modularity • Introduces an experimental GNOME mutter feature
12 lines
183 B
Nix
12 lines
183 B
Nix
{
|
|
lib,
|
|
hostSpec,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
(lib.custom.relativeToRoot "home/global/core")
|
|
./config
|
|
(lib.custom.relativeToRoot "home/hosts/${hostSpec.hostName}")
|
|
];
|
|
}
|