mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
16 lines
194 B
Nix
16 lines
194 B
Nix
{tree, ...}:
|
|
tree.prev
|
|
// {
|
|
nixos = {
|
|
imports = with tree.prev; [
|
|
nixos
|
|
common
|
|
];
|
|
};
|
|
darwin = {
|
|
imports = with tree.prev; [
|
|
darwin
|
|
common
|
|
];
|
|
};
|
|
}
|