diff --git a/home/common/programs/ghostty.nix b/home/common/programs/ghostty.nix new file mode 100644 index 0000000..3e22f2a --- /dev/null +++ b/home/common/programs/ghostty.nix @@ -0,0 +1,8 @@ +{ config, pkgs, ... }: +{ + programs.ghostty = { + enable = true; + }; + + xdg.configFile."ghostty/config".source = ./ghostty/config; +} diff --git a/home/common/programs/ghostty/config b/home/common/programs/ghostty/config new file mode 100644 index 0000000..e1ea42c --- /dev/null +++ b/home/common/programs/ghostty/config @@ -0,0 +1 @@ +keybind = unconsumed:ctrl+enter=ignore diff --git a/home/desktop/default.nix b/home/desktop/default.nix index fc55265..e848274 100644 --- a/home/desktop/default.nix +++ b/home/desktop/default.nix @@ -16,6 +16,7 @@ ../common/programs/desktop ../common/programs/hyprland ../common/programs/kitty.nix + ../common/programs/ghostty.nix ../common/programs/syncthing.nix ../common/programs/gpg.nix ../common/features/colorscheme.nix