mirror of
https://cgit.krebsco.de/krops
synced 2024-11-01 00:39:48 +01:00
9 lines
126 B
Nix
9 lines
126 B
Nix
|
{ lib }@args: let {
|
||
|
|
||
|
body = lib.foldl' (res: path: res // import path args) {} [
|
||
|
./populate.nix
|
||
|
./posix.nix
|
||
|
];
|
||
|
|
||
|
}
|