mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
28 lines
462 B
Nix
28 lines
462 B
Nix
![]() |
{
|
||
|
config,
|
||
|
flake,
|
||
|
pkgs,
|
||
|
osConfig,
|
||
|
...
|
||
|
}:
|
||
|
let
|
||
|
configPath = ./config;
|
||
|
settingsPath = import (configPath + /settings.nix) {
|
||
|
inherit
|
||
|
flake
|
||
|
config
|
||
|
osConfig
|
||
|
pkgs
|
||
|
;
|
||
|
};
|
||
|
themesPath = import (configPath + /themes.nix) { inherit config flake; };
|
||
|
in
|
||
|
{
|
||
|
programs.ghostty = {
|
||
|
enable = true;
|
||
|
package = flake.inputs.ghostty.packages.${pkgs.system}.default;
|
||
|
settings = settingsPath;
|
||
|
themes = themesPath;
|
||
|
};
|
||
|
}
|