mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 18:15:13 -05:00
28 lines
747 B
Nix
Executable file
28 lines
747 B
Nix
Executable file
{
|
|
flake,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
configPath = ./config;
|
|
assistantPath = import (configPath + /assistant) { inherit flake; };
|
|
interfacePath = import (configPath + /interface) { inherit flake; };
|
|
languagesPath = import (configPath + /languages);
|
|
lspPath = import (configPath + /lsp);
|
|
terminalPath = import (configPath + /terminal) { inherit flake; };
|
|
# experimentalPath = import (configPath + /theme) { inherit config flake; };
|
|
gitPath = import (configPath + /git);
|
|
miscPath = import (configPath + /misc) { inherit lib pkgs; };
|
|
in
|
|
{
|
|
git = gitPath;
|
|
languages = languagesPath;
|
|
lsp = lspPath;
|
|
terminal = terminalPath;
|
|
# experimental.theme_overrides = experimentalPath;
|
|
|
|
}
|
|
// assistantPath
|
|
// interfacePath
|
|
// miscPath
|