mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
feat: init
This commit is contained in:
commit
96c6f790fc
804 changed files with 33411 additions and 0 deletions
27
modules/home/gui/apps/emulators/ghostty/default.nix
Executable file
27
modules/home/gui/apps/emulators/ghostty/default.nix
Executable file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue