about summary refs log tree commit diff stats
path: root/pkgs/sources/default.nix
blob: 4668d735f0dc5517f0e6b584911e8b7bf1456e82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  homeConfig,
  nixosConfig,
  sysLib,
}: let
  comments = import ./comments;
  generate_firefox_extensions = import ./generate_moz_extension;
  lf_make_map = import ./lf-make-map;
  nvim_plugs = import ./plgs-pkgs;
  scripts = import ./scripts {inherit sysLib homeConfig nixosConfig;};
  snap-sync-forked = (import ./snap-sync-forked) {inherit sysLib;};
  update_vim_plugins = import ./update_vim_plugins;
  yt = import ./yt;
  yts-grammar = import ./tree-sitter-yts;

  overlays =
    comments
    ++ generate_firefox_extensions
    ++ lf_make_map
    ++ nvim_plugs
    ++ scripts
    ++ snap-sync-forked
    ++ update_vim_plugins
    ++ yt
    ++ yts-grammar;
in
  overlays