• Migrates configuration files from 'common' to 'global' • Updates import paths across modules • Removes outdated macOS configuration • Adds user configuration files WIP
12 lines
184 B
Nix
12 lines
184 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = lib.flatten [
|
|
(map lib.custom.relativeToRoot [
|
|
"hosts/global/common/system/lxc.nix"
|
|
"hosts/global/common/system/pool.nix"
|
|
])
|
|
];
|
|
}
|