mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 01:55:13 -05:00
51 lines
839 B
Nix
Executable file
51 lines
839 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
|
|
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
|