mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
9 lines
125 B
Nix
9 lines
125 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
let
|
|
lazyvim = import ./lazyvim;
|
|
|
|
in
|
|
builtins.concatMap (dir: dir { inherit pkgs lib; }) [
|
|
lazyvim
|
|
]
|