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