mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
17 lines
203 B
Nix
17 lines
203 B
Nix
{tree, ...}:
|
|
tree.prev
|
|
// {
|
|
base = {
|
|
imports = with tree.prev; [
|
|
base16
|
|
shell
|
|
neovim
|
|
];
|
|
};
|
|
work = {
|
|
imports = with tree.prev; [
|
|
work
|
|
wezterm
|
|
];
|
|
};
|
|
}
|