Skip to content

Commit

Permalink
[ghostty] Move configuration to a separate module
Browse files Browse the repository at this point in the history
  • Loading branch information
sestrella committed Jan 2, 2025
1 parent 364e00e commit d004699
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
13 changes: 1 addition & 12 deletions home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
./home/alacritty
./home/bat
./home/git
./home/ghostty
./home/helix
./home/home-manager
./home/neovim
Expand Down Expand Up @@ -98,16 +99,4 @@
programs.zoxide.enable = true;

programs.lazygit.enable = true;

programs.ghostty = {
enable = true;
installBatSyntax = false;
settings = {
command = "${config.programs.fish.package}/bin/fish";
font-family = "FiraCode Nerd Font Mono";
font-size = 16;
font-style = "SemiBold";
theme = "light:Violet Light,dark:Violet Dark";
};
};
}
15 changes: 15 additions & 0 deletions home/ghostty/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{ config, ... }:

{
programs.ghostty = {
enable = true;
installBatSyntax = false;
settings = {
command = "${config.programs.fish.package}/bin/fish";
font-family = "FiraCode Nerd Font Mono";
font-size = 16;
font-style = "SemiBold";
theme = "light:Violet Light,dark:Violet Dark";
};
};
}

0 comments on commit d004699

Please sign in to comment.