mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
19 lines
288 B
Nix
19 lines
288 B
Nix
modulesCfg: {lib, ...}: {
|
|
imports =
|
|
[
|
|
./i18n.nix
|
|
./nixpkgs.nix
|
|
./globalinstalls.nix
|
|
./server.nix
|
|
./desktop
|
|
]
|
|
++ (map (path: (import path modulesCfg)) [
|
|
./hardware
|
|
./users
|
|
]);
|
|
|
|
config = {
|
|
my.modulesCfg = modulesCfg;
|
|
};
|
|
}
|