diff --git a/programs/ghostty.nix b/programs/ghostty.nix index 9594049..bb7ae9c 100644 --- a/programs/ghostty.nix +++ b/programs/ghostty.nix @@ -1,15 +1,14 @@ { - pkgs, - ... -}: -{ - environment.systemPackages = [ pkgs.ghostty ]; - - hm.home.file.".config/ghostty/config".text = '' - theme = light:catppuccin-latte,dark:catppuccin-mocha - font-family = Iosevka Term - font-size = 12 - font-feature = -calt - font-feature = -dlig - ''; + hm.programs.ghostty = { + enable = true; + settings = { + theme = "light:catppuccin-latte,dark:catppuccin-mocha"; + font-family = "Iosevka Term"; + font-size = 12; + font-feature = [ + "-calt" + "-dlig" + ]; + }; + }; }