Ghostty Config

This commit is contained in:
Jack Mechem 2025-11-19 11:36:59 -08:00
parent 0ab24e1a02
commit 6544f1e835
5 changed files with 57 additions and 21 deletions

View file

@ -7,6 +7,7 @@
swaybg
lua-language-server
nil
nixfmt-rfc-style
stylua
lunar-client

View file

@ -1,10 +1,11 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
fonts = {
packages = with pkgs; [
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
noto-fonts-color-emoji
liberation_ttf
fira-code
fira-code-symbols

View file

@ -6,6 +6,6 @@
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [ "wheel" "networkmanager" ]; # Enable sudo for the user.
packages = with pkgs; [ zed-editor cargo clang clang-tools nil ];
packages = with pkgs; [ zed-editor cargo clang clang-tools ];
};
}