2023-09-24 10:15:53 +02:00
|
|
|
modulesCfg: {lib, ...}: {
|
|
|
|
|
imports =
|
|
|
|
|
[
|
|
|
|
|
./i18n.nix
|
|
|
|
|
./nixpkgs.nix
|
2023-09-24 10:46:15 +02:00
|
|
|
./globalinstalls.nix
|
2023-09-24 10:15:53 +02:00
|
|
|
./server.nix
|
|
|
|
|
]
|
|
|
|
|
++ (map (path: (import path modulesCfg)) [
|
|
|
|
|
./hardware
|
2023-09-24 12:39:28 +02:00
|
|
|
./users
|
2023-09-24 13:20:34 +02:00
|
|
|
./desktop
|
2023-09-24 10:15:53 +02:00
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
my.modulesCfg = modulesCfg;
|
|
|
|
|
};
|
|
|
|
|
}
|