From f35efc86d353c1a3d5231e163a6610b346a72181 Mon Sep 17 00:00:00 2001 From: caem Date: Thu, 23 Jan 2025 02:27:39 +0100 Subject: [PATCH] cocktty --- modules/home/caem/development/default.nix | 5 +++++ modules/home/caem/development/ghostty.nix | 16 ++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 modules/home/caem/development/default.nix create mode 100644 modules/home/caem/development/ghostty.nix diff --git a/modules/home/caem/development/default.nix b/modules/home/caem/development/default.nix new file mode 100644 index 0000000..e4fb51f --- /dev/null +++ b/modules/home/caem/development/default.nix @@ -0,0 +1,5 @@ +{ lib, ... }: + +{ + imports = lib.getModuleImports ./.; +} diff --git a/modules/home/caem/development/ghostty.nix b/modules/home/caem/development/ghostty.nix new file mode 100644 index 0000000..f358c97 --- /dev/null +++ b/modules/home/caem/development/ghostty.nix @@ -0,0 +1,16 @@ +{ ... }: + +{ + programs.ghostty = { + enable = true; + enableZshIntegration = true; + settings = let + literally_a_billion_million = 10000000000000; + in{ + font-family = "Go Mono Nerd Font"; + font-size = 12; + background-opacity = 0.95; + scrollback-limit = literally_a_billion_million; + }; + }; +}