mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 16:39:42 -04:00
19 lines
310 B
Nix
19 lines
310 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
let
|
|
theme = import ./theme;
|
|
treesitter = import ./treesitter;
|
|
editing = import ./editing;
|
|
lsp = import ./lsp;
|
|
luasnip = import ./luasnip;
|
|
tools = import ./tools;
|
|
|
|
in
|
|
builtins.concatMap (dir: dir { inherit pkgs lib; }) [
|
|
theme
|
|
treesitter
|
|
editing
|
|
lsp
|
|
luasnip
|
|
tools
|
|
]
|