mirror of
https://github.com/jbowdre/dotfiles.git
synced 2025-01-23 16:24:39 +00:00
ghostty: add config
This commit is contained in:
parent
0c9b32b8ee
commit
9ca305b015
1 changed files with 11 additions and 1 deletions
|
@ -1,7 +1,17 @@
|
||||||
{ config, inputs, ... }: {
|
{ config, inputs, pkgs, ... }: {
|
||||||
|
|
||||||
home.packages =
|
home.packages =
|
||||||
[ (config.lib.nixGL.wrap inputs.ghostty.packages.x86_64-linux.default) ];
|
[ (config.lib.nixGL.wrap inputs.ghostty.packages.x86_64-linux.default) ];
|
||||||
|
|
||||||
|
xdg.configFile."ghostty/config".text = ''
|
||||||
|
auto-update = off
|
||||||
|
command = ${pkgs.fish}/bin/fish
|
||||||
|
font-family = BerkeleyMono Nerd Font Mono
|
||||||
|
initial-command = ${pkgs.fish}/bin/fish -c "${pkgs.tmux}/bin/tmux attach-session -t (hostname -s) || tmux new-session -s (hostname -s) -c $HOME"
|
||||||
|
shell-integration = fish
|
||||||
|
theme = catppuccin-mocha
|
||||||
|
window-height = 50
|
||||||
|
window-width = 170
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue