mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
27 lines
424 B
Nix
Executable file
27 lines
424 B
Nix
Executable file
{
|
|
flake,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
configPath = ./config;
|
|
settingsPath = import (configPath + /settings.nix) {
|
|
inherit
|
|
flake
|
|
pkgs
|
|
;
|
|
};
|
|
themesPath = import (configPath + /themes.nix) {
|
|
inherit
|
|
flake
|
|
;
|
|
};
|
|
in
|
|
{
|
|
programs.ghostty = {
|
|
enable = true;
|
|
package = flake.inputs.ghostty.packages.${pkgs.system}.default;
|
|
settings = settingsPath;
|
|
themes = themesPath;
|
|
};
|
|
}
|