mirror of
https://github.com/softinio/nix-config.git
synced 2025-09-05 09:06:42 -07:00
Updates and added an aider derivation
This commit is contained in:
parent
1a6b7782a0
commit
4da6e4b6b8
10 changed files with 277 additions and 88 deletions
21
programs/ghostty/default.nix
Normal file
21
programs/ghostty/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue