Updates and added an aider derivation

This commit is contained in:
Salar Rahmanian 2025-02-14 09:43:13 -08:00
parent 1a6b7782a0
commit 4da6e4b6b8
10 changed files with 277 additions and 88 deletions

View file

@ -0,0 +1,21 @@
{ pkgs, ... }:
let
mySettings = {
copy-on-select = "clipboard";
font-family = "SF Mono";
font-size = 16;
macos-title-bar-style = "transparent";
theme = "Builtin Tango Dark";
window-inherit-working-directory = true;
working-directory = "home";
};
in
{
programs.ghostty = {
enable = true;
enableFishIntegration = true;
installBatSyntax = true;
installVimSyntax = true;
settings = mySettings;
};
}