1
Fork 0
This commit is contained in:
caem 2025-01-23 02:27:39 +01:00
parent 2d2be6b50c
commit f35efc86d3
Signed by: caem
GPG key ID: 69A830D03203405F
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,5 @@
{ lib, ... }:
{
imports = lib.getModuleImports ./.;
}

View file

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