dotfiles/home/modules/gui/apps/code/zed/config/userSettings/default.nix

29 lines
747 B
Nix
Raw Normal View History

2025-01-14 16:17:42 -06:00
{
flake,
lib,
pkgs,
...
2025-01-18 03:50:54 -06:00
}:
let
2025-01-14 16:17:42 -06:00
configPath = ./config;
assistantPath = import (configPath + /assistant) { inherit flake; };
interfacePath = import (configPath + /interface) { inherit flake; };
2025-01-14 16:17:42 -06:00
languagesPath = import (configPath + /languages);
lspPath = import (configPath + /lsp);
terminalPath = import (configPath + /terminal) { inherit flake; };
2025-02-01 00:26:39 -06:00
# experimentalPath = import (configPath + /theme) { inherit config flake; };
2025-01-14 16:17:42 -06:00
gitPath = import (configPath + /git);
miscPath = import (configPath + /misc) { inherit lib pkgs; };
2025-01-14 16:17:42 -06:00
in
2025-01-18 03:50:54 -06:00
{
git = gitPath;
languages = languagesPath;
lsp = lspPath;
terminal = terminalPath;
2025-02-01 00:26:39 -06:00
# experimental.theme_overrides = experimentalPath;
2025-01-18 03:50:54 -06:00
}
2025-01-20 23:33:35 -06:00
// assistantPath
2025-01-18 03:50:54 -06:00
// interfacePath
2025-01-19 23:40:54 -06:00
// miscPath