1
1
Fork 0

ghostty: initial program

Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
Myned 2025-01-07 21:50:16 -06:00
parent fb4b434fce
commit cfdbf4a977
Signed by: Myned
GPG key ID: C7224454F7881A34
2 changed files with 29 additions and 0 deletions

View file

@ -32,6 +32,7 @@ with lib; {
dconf.enable = true; dconf.enable = true;
firefox.enable = true; firefox.enable = true;
#// foot.enable = true; #// foot.enable = true;
ghostty.enable = true;
#// gnome-terminal.enable = true; #// gnome-terminal.enable = true;
#// kdeconnect.enable = true; #// kdeconnect.enable = true;
kitty.enable = true; kitty.enable = true;

View file

@ -0,0 +1,28 @@
{
config,
lib,
...
}:
with lib; let
cfg = config.custom.programs.ghostty;
hm = config.home-manager.users.${config.custom.username};
in {
options.custom.programs.ghostty = {
enable = mkOption {default = false;};
};
config = mkIf cfg.enable {
home-manager.sharedModules = [
{
# https://ghostty.org/
programs.ghostty = {
enable = true;
# https://ghostty.org/docs/config/reference
settings = {
};
};
}
];
};
}