From c0162f655d2344e6fb5f62f6cbaed59cc0dd11ba Mon Sep 17 00:00:00 2001 From: Miguel Palhas Date: Sat, 4 Jan 2025 06:52:20 +0000 Subject: [PATCH] wip --- home/common/programs/ghostty.nix | 8 ++++++++ home/common/programs/ghostty/config | 1 + home/desktop/default.nix | 1 + 3 files changed, 10 insertions(+) create mode 100644 home/common/programs/ghostty.nix create mode 100644 home/common/programs/ghostty/config 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