home-modules: add ghostty
This commit is contained in:
parent
2800e74f7e
commit
e91968e2a1
3 changed files with 17 additions and 0 deletions
14
modules/home/desktopPrograms/ghostty/default.nix
Normal file
14
modules/home/desktopPrograms/ghostty/default.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
options.settings.programs.ghostty = {
|
||||
enable = lib.mkEnableOption "enable ghostty terminal emulator";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.settings.programs.ghostty.enable {
|
||||
programs.ghostty = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
installBatSyntax = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue