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; + }; + }; +}